From 843eaae7e7e33f2b9c09471ce2d3ace61f09ce60 Mon Sep 17 00:00:00 2001
From: Eric Covener
Date: Fri, 7 Jun 2013 13:19:35 +0000
Subject: [PATCH] speling, pointed out by sluggr on freenode.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1490630 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 3acb2803067..e186372ad13 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.47.3