From 489773dbf4bd34a5b37e9aa5b3aac6567b05888c Mon Sep 17 00:00:00 2001 From: YI Date: Thu, 22 Oct 2020 09:03:20 +0800 Subject: [PATCH] remove extra double quotes in expansion documentation --- doc/pages/expansions.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/pages/expansions.asciidoc b/doc/pages/expansions.asciidoc index fdd7629d..f1b4c802 100644 --- a/doc/pages/expansions.asciidoc +++ b/doc/pages/expansions.asciidoc @@ -48,9 +48,9 @@ for full details). For example: * `echo "x%val{session}x"` echoes the current session ID, surrounded by `x` -* `echo %{%val{session}}"` echoes the the literal text `%val{session}` +* `echo %{%val{session}}` echoes the the literal text `%val{session}` -* `echo %sh{ echo %val{session} }"` echoes the literal text `%val{session}` +* `echo %sh{ echo %val{session} }` echoes the literal text `%val{session}` Like "variable expansion" and "command substitution" in shell programming, Kakoune expansions can expand to multiple "words" - that is, separate