Fix some typos in docs

This commit is contained in:
Miguel de Val-Borro 2020-05-02 11:36:58 -04:00
parent 2fca4e5643
commit 85227019ff
5 changed files with 6 additions and 6 deletions

View File

@ -316,7 +316,7 @@ Selections
~~~~~~~~~~
The main concept in Kakoune is the selection. A selection is an inclusive,
directed range of character. A selection has two ends, the anchor and the
directed range of characters. A selection has two ends, the anchor and the
cursor.
There is always at least one selection, and a selection is always at least
@ -760,7 +760,7 @@ Regex syntax
~~~~~~~~~~~~
Kakoune regex syntax is based on the ECMAScript syntax (ECMA-262 standard).
It always run on Unicode codepoint sequences, not on bytes.
It always runs on Unicode codepoint sequences, not on bytes.
See <<doc/pages/regex#,`:doc regex`>>.

View File

@ -202,7 +202,7 @@ of the file onto the filesystem
== Hooks
*hook* [-group <group>] <scope> <hook_name> <filtering_regex> <command>::
execute *command* whenever an *hook_name* is triggered in *scope*
execute *command* whenever a *hook_name* is triggered in *scope*
(See <<hooks#,`:doc hooks`>> and <<scopes#,`:doc scopes`>>)
*remove-hooks* <scope> <group>::

View File

@ -224,7 +224,7 @@ matches are considered valid for a given region opening match only if they
matched the same content for the capture 1.
The *recurse* option is useful for regions that can be nested, for example
the following contruct:
the following construct:
----------
%sh{ ... }

View File

@ -95,7 +95,7 @@ it when pasting text.
== Movement
'word' is a sequence of alphanumeric characters or underscore, and 'WORD'
is a sequence of non whitespace characters. Generally, a movement on it own
is a sequence of non whitespace characters. Generally, a movement on its own
will move each selection to cover the text moved over, while holding down
the Shift modifier and moving will extend each selection instead.

View File

@ -55,7 +55,7 @@ See insert commands <<keys#insert-mode,`:doc keys insert-mode`>>.
=== Goto mode
Goto mode provides commands dedicated to jumping either inside a buffer
(such as jumping to buffer start/end, window top/botton) or to another
(such as jumping to buffer start/end, window top/bottom) or to another
(such as jumping to the file whose path is currently selected).
See goto commands <<keys#goto-commands,`:doc keys goto-commands`>>.