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/03/11 19:29:23 UTC

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

Author: humbedooh
Date: Mon Mar 11 18:29:23 2013
New Revision: 1455272

URL: http://svn.apache.org/r1455272
Log:
typo 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=1455272&r1=1455271&r2=1455272&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lua.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lua.xml Mon Mar 11 18:29:23 2013
@@ -898,7 +898,7 @@ end
     </p>
     <p>The example below shows how to acquire a database handle and return information from a table:</p>
     <highlight language="lua">
-function handler(r)
+function handle(r)
     -- Acquire a database handle
     local database, err = r:dbacquire("mysql", "server=localhost,user=root,dbname=mydb")
     if not err then