diff options
author | 2011-12-12 19:15:53 -0500 | |
---|---|---|
committer | 2011-12-12 19:15:53 -0500 | |
commit | 9f804f70df793dd2d50c0b14000ab83a6bc02b83 (patch) | |
tree | 12b826dc06b800d868854231d4db56d489697832 /doc/manual/7_Modules.md | |
parent | 51bfd53e48d5310eb786069b758e0430129daf54 (diff) | |
download | textadept-9f804f70df793dd2d50c0b14000ab83a6bc02b83.tar.gz textadept-9f804f70df793dd2d50c0b14000ab83a6bc02b83.zip |
Remove 'module' and update LuaDoc comments appropriately.
Diffstat (limited to 'doc/manual/7_Modules.md')
-rw-r--r-- | doc/manual/7_Modules.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/manual/7_Modules.md b/doc/manual/7_Modules.md index 57845121..4885b9cd 100644 --- a/doc/manual/7_Modules.md +++ b/doc/manual/7_Modules.md @@ -135,9 +135,7 @@ a `post_init.lua` file. For example, instead of copying the `lua` module and changing its `set_buffer_properties()` function to use tabs, you can do this from `post_init.lua`: - module('_m.lua', package.seeall) - - function set_buffer_properties() + function _m.lua.set_buffer_properties() buffer.use_tabs = true end |