]> granicus.if.org Git - apache/commitdiff
typo fix
authorDaniel Gruno <humbedooh@apache.org>
Mon, 11 Mar 2013 18:29:23 +0000 (18:29 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Mon, 11 Mar 2013 18:29:23 +0000 (18:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1455272 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.xml

index 8b0c19c7a2c06b769d29903179e1594ce773ad63..c0e2f11acf1b5f0ff07e071445f7ff05337e2f13 100644 (file)
@@ -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