diff options
author | 2013-07-08 16:09:29 -0400 | |
---|---|---|
committer | 2013-07-08 16:09:29 -0400 | |
commit | 6600c4f959bb4ea91a2f632bfc5375f7e75e40c4 (patch) | |
tree | 3c108fa22c3c6d6d32ea7beef55039bd845149d5 /modules/textadept/adeptsense.lua | |
parent | 7d1f21b44479d8b4484f8e27872eafd203b0e727 (diff) | |
download | textadept-6600c4f959bb4ea91a2f632bfc5375f7e75e40c4.tar.gz textadept-6600c4f959bb4ea91a2f632bfc5375f7e75e40c4.zip |
Renamed "language-specific" modules to just "language modules" in documentation.
Diffstat (limited to 'modules/textadept/adeptsense.lua')
-rw-r--r-- | modules/textadept/adeptsense.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/textadept/adeptsense.lua b/modules/textadept/adeptsense.lua index a8b24202..283e7576 100644 --- a/modules/textadept/adeptsense.lua +++ b/modules/textadept/adeptsense.lua @@ -34,17 +34,17 @@ local M = {} -- -- ## Adeptsense Basics -- --- Adeptsenses exist per-language so [language-specific modules][] typically --- define them. Before attempting to write an Adeptsense, first determine if the --- module for your language has an Adeptsense. Textadept's official language --- modules have Adeptsenses and are good reference sources. If your language is --- similar to any of Textadept's, you may be able to copy and modify that --- language's Adeptsense, saving some time and effort. +-- Adeptsenses exist per-language so [language modules][] typically define them. +-- Before attempting to write an Adeptsense, first determine if the module for +-- your language has an Adeptsense. Textadept's official language modules have +-- Adeptsenses and are good reference sources. If your language is similar to +-- any of Textadept's, you may be able to copy and modify that language's +-- Adeptsense, saving some time and effort. -- --- [language-specific modules]: _M.html#Language-Specific.Modules +-- [language modules]: _M.html#Language.Modules -- --- Creating a new instance of an Adeptsense from within a language-specific --- module is easy. Just replace the '?' with the name of your language: +-- Creating a new instance of an Adeptsense from within a language module is +-- easy. Just replace the '?' with the name of your language: -- -- M.sense = _M.textadept.adeptsense.new('?') -- |