aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/14_Appendix.md
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2012-10-30 20:45:41 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2012-10-30 20:45:41 -0400
commit91d84c4643618e080e1f9abb70416ada5d03db73 (patch)
tree4b60592ef4966076423aa02165a4f2cabf8e0bbe /doc/14_Appendix.md
parent8020ef7e08d812ac28d5c5ff12d311d1ee3b39a6 (diff)
Continued updating documentation formatting.
Diffstat (limited to 'doc/14_Appendix.md')
-rw-r--r--doc/14_Appendix.md7
1 files changed, 1 insertions, 6 deletions
diff --git a/doc/14_Appendix.md b/doc/14_Appendix.md
index 4ce299e1..f335f246 100644
--- a/doc/14_Appendix.md
+++ b/doc/14_Appendix.md
@@ -315,14 +315,9 @@ or
and
-- File ~/.textadept/init.lua
- require 'textadept'
+ _M.textadept = require 'textadept'
_M.foo = require 'foo'
-Please remember that, as stated in the documentation, `require 'textadept'` is a
-special case and `_M.textadept = require 'textadept'` is not necessary because
-of internal dependencies. All other modules need the
-`_M.module = require 'module'` construct.
-
Notice that `_M` is the new module table instead of `_m`. More on this
[later](#Global.Module.Table).