From: Daniel Gruno Date: Tue, 10 Apr 2012 06:32:01 +0000 (+0000) Subject: Typo fix X-Git-Tag: 2.5.0-alpha~7222 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1bd4b4536ba0fc6934e9f62124bdb540029bb690;p=apache Typo fix git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1311593 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml index 898396a831..94717e5a25 100644 --- a/docs/manual/developer/modguide.xml +++ b/docs/manual/developer/modguide.xml @@ -229,7 +229,7 @@ In C code, our example handler will now look like this:
static int example_handler(request_rec *r) { /* First off, we need to check if this is a call for the "example-handler" handler. -     * If it is, we accept it and do our things, it not, we simply return DECLINED, +     * If it is, we accept it and do our things, if not, we simply return DECLINED,      * and Apache will try somewhere else.      */ if (!r->handler || strcmp(r->handler, "example-handler")) return (DECLINED);