Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E6C399706 for ; Tue, 10 Apr 2012 06:32:29 +0000 (UTC) Received: (qmail 78717 invoked by uid 500); 10 Apr 2012 06:32:29 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 78453 invoked by uid 500); 10 Apr 2012 06:32:26 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 78419 invoked by uid 99); 10 Apr 2012 06:32:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Apr 2012 06:32:25 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Apr 2012 06:32:22 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C28CF23888EA; Tue, 10 Apr 2012 06:32:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1311593 - /httpd/httpd/trunk/docs/manual/developer/modguide.xml Date: Tue, 10 Apr 2012 06:32:01 -0000 To: cvs@httpd.apache.org From: humbedooh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120410063201.C28CF23888EA@eris.apache.org> Author: humbedooh Date: Tue Apr 10 06:32:01 2012 New Revision: 1311593 URL: http://svn.apache.org/viewvc?rev=1311593&view=rev Log: Typo fix Modified: httpd/httpd/trunk/docs/manual/developer/modguide.xml Modified: httpd/httpd/trunk/docs/manual/developer/modguide.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/developer/modguide.xml?rev=1311593&r1=1311592&r2=1311593&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/developer/modguide.xml (original) +++ httpd/httpd/trunk/docs/manual/developer/modguide.xml Tue Apr 10 06:32:01 2012 @@ -229,7 +229,7 @@ In C code, our example handler will now 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);