You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2013/04/13 08:49:39 UTC

svn commit: r1467562 - /httpd/httpd/trunk/docs/manual/mod/mod_lua.xml

Author: humbedooh
Date: Sat Apr 13 06:49:39 2013
New Revision: 1467562

URL: http://svn.apache.org/r1467562
Log:
whitespace/escape fix

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_lua.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_lua.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lua.xml?rev=1467562&r1=1467561&r2=1467562&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lua.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lua.xml Sat Apr 13 06:49:39 2013
@@ -1018,7 +1018,7 @@ local result, errmsg = database:select(r
 -- 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: