From: Christophe Jaillet Date: Wed, 30 Apr 2014 04:09:40 +0000 (+0000) Subject: Correct typo as spoted in a comment in online doc X-Git-Tag: 2.5.0-alpha~4241 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a9869a104b49a0e7e17a58be68ca7febb209033;p=apache Correct typo as spoted in a comment in online doc git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1591188 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index ee7318f851..48a546deb7 100644 --- a/docs/manual/developer/modguide.html.en +++ b/docs/manual/developer/modguide.html.en @@ -1210,7 +1210,7 @@ our first step is to make a function for creating new, blank configurations. We do so by creating the function we just referenced in our name tag as the Per-directory configuration handler:

-
void* example_create_dir_conf(apr_pool_t* pool, char* context) {
+
void* create_dir_conf(apr_pool_t* pool, char* context) {
     context = context ? context : "(undefined context)";
     example_config *cfg = apr_pcalloc(pool, sizeof(example_config));
     if(cfg) {
diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml
index 7279e4dcec..73828905e4 100644
--- a/docs/manual/developer/modguide.xml
+++ b/docs/manual/developer/modguide.xml
@@ -1234,7 +1234,7 @@ configurations. We do so by creating the function we just referenced in
 our name tag as the Per-directory configuration handler:

-void* example_create_dir_conf(apr_pool_t* pool, char* context) { +void* create_dir_conf(apr_pool_t* pool, char* context) { context = context ? context : "(undefined context)"; example_config *cfg = apr_pcalloc(pool, sizeof(example_config)); if(cfg) {