From: Daniel Gruno
Date: Mon, 11 Mar 2013 18:29:23 +0000 (+0000)
Subject: typo fix
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bd053258cf079859bbeb9e4e87c87e22907023c;p=thirdparty%2Fapache%2Fhttpd.git
typo fix
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1455272 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml
index 8b0c19c7a2c..c0e2f11acf1 100644
--- a/docs/manual/mod/mod_lua.xml
+++ b/docs/manual/mod/mod_lua.xml
@@ -898,7 +898,7 @@ end
The example below shows how to acquire a database handle and return information from a table:
-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