From 85227019ff6c3cfe400912588a00cc3b4eeb835f Mon Sep 17 00:00:00 2001 From: Miguel de Val-Borro Date: Sat, 2 May 2020 11:36:58 -0400 Subject: [PATCH] Fix some typos in docs --- README.asciidoc | 4 ++-- doc/pages/commands.asciidoc | 2 +- doc/pages/highlighters.asciidoc | 2 +- doc/pages/keys.asciidoc | 2 +- doc/pages/modes.asciidoc | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.asciidoc b/README.asciidoc index 3d114508..2abc4c3d 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -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 <>. diff --git a/doc/pages/commands.asciidoc b/doc/pages/commands.asciidoc index baff045a..174d7b58 100644 --- a/doc/pages/commands.asciidoc +++ b/doc/pages/commands.asciidoc @@ -202,7 +202,7 @@ of the file onto the filesystem == Hooks *hook* [-group ] :: - execute *command* whenever an *hook_name* is triggered in *scope* + execute *command* whenever a *hook_name* is triggered in *scope* (See <> and <>) *remove-hooks* :: diff --git a/doc/pages/highlighters.asciidoc b/doc/pages/highlighters.asciidoc index 25e39846..52258ffe 100644 --- a/doc/pages/highlighters.asciidoc +++ b/doc/pages/highlighters.asciidoc @@ -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{ ... } diff --git a/doc/pages/keys.asciidoc b/doc/pages/keys.asciidoc index c1600a3e..4adcb21f 100644 --- a/doc/pages/keys.asciidoc +++ b/doc/pages/keys.asciidoc @@ -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. diff --git a/doc/pages/modes.asciidoc b/doc/pages/modes.asciidoc index 9181e619..4e8f6d6b 100644 --- a/doc/pages/modes.asciidoc +++ b/doc/pages/modes.asciidoc @@ -55,7 +55,7 @@ See insert commands <>. === 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 <>.