]> granicus.if.org Git - apache/commitdiff
whitespace/escape fix
authorDaniel Gruno <humbedooh@apache.org>
Sat, 13 Apr 2013 06:49:39 +0000 (06:49 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Sat, 13 Apr 2013 06:49:39 +0000 (06:49 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1467562 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.xml

index db6027a24339c30448d7143fa1fc77db4c372ba3..4b662dcb4e8ab4bec0750e81fb133effc97c1dd0 100644 (file)
@@ -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 &gt; 20
 end
 
 -- Fetch a prepared statement from a DBDPrepareSQL directive: