From 1d500abe23ef8e764e49349f29819019aa161633 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Tue, 10 Apr 2012 06:32:19 +0000 Subject: [PATCH] Rebuild git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1311595 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/developer/modguide.html.en | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en index 3de79425ede..780d3ca2189 100644 --- a/docs/manual/developer/modguide.html.en +++ b/docs/manual/developer/modguide.html.en @@ -231,7 +231,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.47.3