diff options
author | 2013-08-11 08:45:48 -0400 | |
---|---|---|
committer | 2013-08-11 08:45:48 -0400 | |
commit | 58e1d2b46d09b79ad9c43ae177057c8578294649 (patch) | |
tree | 7bb89504ad880952e09a43daf9c851e7d57111ab /modules | |
parent | de1058d449489faf3b518154835227a742361903 (diff) | |
download | textadept-58e1d2b46d09b79ad9c43ae177057c8578294649.tar.gz textadept-58e1d2b46d09b79ad9c43ae177057c8578294649.zip |
Fixed some documentation typos.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/textadept/snippets.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/snippets.lua b/modules/textadept/snippets.lua index 1ab6d03a..9c873297 100644 --- a/modules/textadept/snippets.lua +++ b/modules/textadept/snippets.lua @@ -31,7 +31,7 @@ local M = {} -- -- ### `%`*n* -- --- Represents a mirrors, where *n* is an integer. Mirrors with the same *n* as a +-- Represents a mirror, where *n* is an integer. Mirrors with the same *n* as a -- placeholder mirror any user input in the placeholder. If no placeholder -- exists for *n*, the first occurrence of that mirror in the snippet becomes -- the placeholder, but with no default text. Examples are @@ -41,7 +41,7 @@ local M = {} -- -- ### `%`*n*`<`*Lua code*`>`<br/>`%`*n*`[`*Shell code*`]` -- --- Represents a transforms, where *n* is an integer, *Lua code* is arbitrary Lua +-- Represents a transform, where *n* is an integer, *Lua code* is arbitrary Lua -- code, and *Shell code* is arbitrary Shell code. Textadept executes the code -- when the editor visits placeholder *n*. If the transform omits *n*, Textadept -- executes the transform's code the moment the editor inserts the snippet. |