From: Daniel Gruno Date: Sat, 13 Apr 2013 06:49:39 +0000 (+0000) Subject: whitespace/escape fix X-Git-Tag: 2.5.0-alpha~5594 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ae71d6a813227cd88c1949b0f9b454b38dc209b;p=apache whitespace/escape fix git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1467562 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index db6027a243..4b662dcb4e 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -1018,7 +1018,7 @@ local result, errmsg = database:select(r, "SELECT * FROM `people` WHERE 1") -- Create and run a prepared statement: local statement, errmsg = database:prepare(r, "DELETE FROM `tbl` WHERE `age` > %u") if not errmsg then - local result, errmsg = statement:query(20) -- run the statement with age >20 + local result, errmsg = statement:query(20) -- run the statement with age > 20 end -- Fetch a prepared statement from a DBDPrepareSQL directive: