From 1bd4b4536ba0fc6934e9f62124bdb540029bb690 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Tue, 10 Apr 2012 06:32:01 +0000 Subject: [PATCH] Typo fix git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1311593 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/developer/modguide.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.0