# HG changeset patch # User jbe # Date 1427336852 -3600 # Node ID d2429d53a15847e51fa91f9e77ea0fd0e6640d37 # Parent 169dfbd0246a1f8fe2ba648a966f680c08d55c6f Fixed two tiny errors in autodoc comments in mondelefant diff -r 169dfbd0246a -r d2429d53a158 libraries/mondelefant/mondelefant.lua --- a/libraries/mondelefant/mondelefant.lua Thu Mar 26 03:00:04 2015 +0100 +++ b/libraries/mondelefant/mondelefant.lua Thu Mar 26 03:27:32 2015 +0100 @@ -530,7 +530,7 @@ expression -- expression or selector without ORDER BY, LIMIT, FOR UPDATE or FOR SHARE ) -This method adds an UNION clause to the given selector. The selector is modified and returned. The selector (or expression) passed as argument to this function shall not contain any ORDER BY, LIMIT, FOR UPDATE or FOR SHARE clauses. +This method adds a UNION clause to the given selector. The selector is modified and returned. The selector (or expression) passed as argument to this function shall not contain any ORDER BY, LIMIT, FOR UPDATE or FOR SHARE clauses. --]]-- function selector_prototype:union(expression) @@ -545,7 +545,7 @@ expression -- expression or selector without ORDER BY, LIMIT, FOR UPDATE or FOR SHARE ) -This method adds an UNION ALL clause to the given selector. The selector is modified and returned. The selector (or expression) passed as argument to this function shall not contain any ORDER BY, LIMIT, FOR UPDATE or FOR SHARE clauses. +This method adds a UNION ALL clause to the given selector. The selector is modified and returned. The selector (or expression) passed as argument to this function shall not contain any ORDER BY, LIMIT, FOR UPDATE or FOR SHARE clauses. --]]-- function selector_prototype:union_all(expression)