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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52de0b5a9c30519a4069d922892da643fb80aeb2;p=thirdparty%2Fapache%2Fhttpd.git 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 ee7318f8519..48a546deb7a 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 7279e4dcec5..73828905e4a 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) {