]> granicus.if.org Git - apache/commitdiff
Typo fix
authorDaniel Gruno <humbedooh@apache.org>
Tue, 10 Apr 2012 06:32:01 +0000 (06:32 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 10 Apr 2012 06:32:01 +0000 (06:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1311593 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/modguide.xml

index 898396a831f76c2b8d2f7b9723d7f95b1b785671..94717e5a255400ffebc4794befb244f735abe361 100644 (file)
@@ -229,7 +229,7 @@ In C code, our example handler will now look like this:<br/>
 <code style='color:#400000; font-weight:bold; '>static</code> <code style='color:#400000; font-weight:bold; '>int</code> example_handler<code style='color:#806030; '>(</code>request_rec <code style='color:#806030; '>*</code>r<code style='color:#806030; '>)</code>
 <code style='color:#806030; '>{</code>
     <code style='color:#c34e00; '>/* First off, we need to check if this is a call for the "example-handler" handler.</code>
-<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;* If it is, we accept it and do our things, it not, we simply return DECLINED,</code>
+<code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;* If it is, we accept it and do our things, if not, we simply return DECLINED,</code>
 <code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;* and Apache will try somewhere else.</code>
 <code style='color:#c34e00; '>&#xa0;&#xa0;&#xa0;&#xa0;&#xa0;*/</code>
     <code style='color:#400000; font-weight:bold; '>if</code> <code style='color:#806030; '>(</code><code style='color:#806030; '>!</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code> <code style='color:#806030; '>|</code><code style='color:#806030; '>|</code> <code style='color:#800040; '>strcmp</code><code style='color:#806030; '>(</code>r<code style='color:#806030; '>-</code><code style='color:#806030; '>></code><code style='color:#008833'>handler</code><code style='color:#806030; '>,</code> <code style='color:#800000; '>"</code><code style='color:#e60000; '>example-handler</code><code style='color:#800000; '>"</code><code style='color:#806030; '>)</code><code style='color:#806030; '>)</code> <code style='color:#400000; font-weight:bold; '>return</code> <code style='color:#806030; '>(</code>DECLINED<code style='color:#806030; '>)</code><code style='color:#806030; '>;</code>