From ed9e6bfbea44e8655521ab40e4dd5b0e5ac4facb Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Fri, 7 Jun 2013 13:20:30 +0000 Subject: [PATCH] Merge r1490630 from trunk: speling, pointed out by sluggr on freenode. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1490633 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/developer/modguide.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index 3acb280306..e186372ad1 100644 --- a/docs/manual/developer/modguide.xml +++ b/docs/manual/developer/modguide.xml @@ -902,7 +902,7 @@ has an additional parameter defined:

-/* Handler for the "exambleEnabled" directive */ +/* Handler for the "exampleEnabled" directive */ const char *example_set_enabled(cmd_parms *cmd, void *cfg, const char *arg) { if(!strcasecmp(arg, "on")) config.enabled = 1; @@ -972,7 +972,7 @@ static example_config config; Our directive handlers: ============================================================================== */ -/* Handler for the "exambleEnabled" directive */ +/* Handler for the "exampleEnabled" directive */ const char *example_set_enabled(cmd_parms *cmd, void *cfg, const char *arg) { if(!strcasecmp(arg, "on")) config.enabled = 1; @@ -1451,7 +1451,7 @@ static int example_handler(request_rec *r) /* ======================================================================================================================= - Handler for the "exambleEnabled" directive + Handler for the "exampleEnabled" directive ======================================================================================================================= */ const char *example_set_enabled(cmd_parms *cmd, void *cfg, const char *arg) -- 2.50.1