summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Allen <screwtape@froup.com>2018-09-28 18:00:20 +1000
committerTim Allen <screwtape@froup.com>2018-09-28 18:00:20 +1000
commitb57784e06c1db5f000f641affdbe1377097b4fa3 (patch)
treee755d6cafc1f6681b4139a33219fcd221365709e
parent3c8d160a62d53b2e3b5b1881efdcd9c0e3e3000b (diff)
Spaces around ellipses.
-rw-r--r--doc/pages/expansions.asciidoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/pages/expansions.asciidoc b/doc/pages/expansions.asciidoc
index 57c1e4b5..683695e1 100644
--- a/doc/pages/expansions.asciidoc
+++ b/doc/pages/expansions.asciidoc
@@ -111,7 +111,7 @@ of each selection, you can do something like:
----
eval set -- $kak_selections
while [ $# -gt 0 ]; do
- # ...do a thing with $1...
+ # ... do a thing with $1 ...
shift
done
----
@@ -128,13 +128,13 @@ be exported into the shell's environment. For example:
echo %sh{ env | grep ^kak_ }
----
-...will find none of Kakoune's special environment variables, but:
+... will find none of Kakoune's special environment variables, but:
----
echo %sh{ env | grep ^kak_ # kak_session }
----
-...will find the `$kak_session` variable because it was mentioned by name
+... will find the `$kak_session` variable because it was mentioned by name
in a comment, even though it wasn't directly used.
TIP: These environment variables are also available in other contexts where