From ad3e965e16cd769b42a3a6c30af55a6856e76970 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Wed, 29 Sep 2010 21:38:06 +0200 Subject: [PATCH] Fix some broken luadoc Signed-off-by: Uli Schlachter --- lib/gears/object.lua.in | 10 +++++----- lib/gears/sort.lua.in | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/gears/object.lua.in b/lib/gears/object.lua.in index 64eb8346..33b1166f 100644 --- a/lib/gears/object.lua.in +++ b/lib/gears/object.lua.in @@ -18,7 +18,7 @@ local function check(obj) end end --- Find a given signal +--- Find a given signal -- @param obj The object to search in -- @param name The signal to find -- @param error_msg Error message for if the signal is not found @@ -31,7 +31,7 @@ local function find_signal(obj, name, error_msg) return obj._signals[name] end --- Add a signal to an object. All signals must be added before they can be used. +--- Add a signal to an object. All signals must be added before they can be used. -- @param obj The object -- @param name The name of the new signal. function add_signal(obj, name) @@ -41,7 +41,7 @@ function add_signal(obj, name) end end --- Connect to a signal +--- Connect to a signal -- @param obj The object -- @param name The name of the signal -- @param func The callback to call when the signal is emitted @@ -50,7 +50,7 @@ function connect_signal(obj, name, func) sig[func] = func end --- Disonnect to a signal +--- Disonnect to a signal -- @param obj The object -- @param name The name of the signal -- @param func The callback that should be disconnected @@ -59,7 +59,7 @@ function disconnect_signal(obj, name, func) sig[func] = nil end --- Emit a signal +--- Emit a signal -- @param obj The object -- @param name The name of the signal -- @param ... Extra arguments for the callback functions. Each connected diff --git a/lib/gears/sort.lua.in b/lib/gears/sort.lua.in index 5b1647b1..38e2b4d8 100644 --- a/lib/gears/sort.lua.in +++ b/lib/gears/sort.lua.in @@ -15,7 +15,7 @@ local function less_than_comp(a, b) return a < b end --- Sort a table. This interface should be identical to table.sort(). +--- Sort a table. This interface should be identical to table.sort(). -- The difference to table.sort() is that this sort is stable. -- @param list The table to sort (we do an in-place sort!). -- @param comp Comparator used for the sorting