From 2ab6deaecb4576c932dd63186927e9481bf5dedc Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Thu, 5 Jan 2012 05:20:39 -0500 Subject: Rename '_m' to '_M'. --- modules/textadept/session.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/textadept/session.lua') diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua index 99ac0c46..4e007674 100644 --- a/modules/textadept/session.lua +++ b/modules/textadept/session.lua @@ -5,7 +5,7 @@ local M = {} --[[ This comment is for LuaDoc. --- -- Session support for the textadept module. -module('_m.textadept.session')]] +module('_M.textadept.session')]] -- Markdown: -- ## Settings @@ -28,7 +28,7 @@ M.MAX_RECENT_FILES = 10 -- @param filename The absolute path to the session file to load. Defaults to -- `DEFAULT_SESSION` if not specified. -- @return `true` if the session file was opened and read; `false` otherwise. --- @usage _m.textadept.session.load(filename) +-- @usage _M.textadept.session.load(filename) -- @name load function M.load(filename) local not_found = {} @@ -104,7 +104,7 @@ events.connect('arg_none', function() if M.SAVE_ON_QUIT then M.load() end end) -- details. -- @param filename The absolute path to the session file to save. Defaults to -- either the current session file or `DEFAULT_SESSION` if not specified. --- @usage _m.textadept.session.save(filename) +-- @usage _M.textadept.session.save(filename) -- @name save function M.save(filename) local session = {} -- cgit v1.2.3