aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/adeptsense.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-07-08 16:09:29 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-07-08 16:09:29 -0400
commit6600c4f959bb4ea91a2f632bfc5375f7e75e40c4 (patch)
tree3c108fa22c3c6d6d32ea7beef55039bd845149d5 /modules/textadept/adeptsense.lua
parent7d1f21b44479d8b4484f8e27872eafd203b0e727 (diff)
downloadtextadept-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.lua18
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('?')
--