summaryrefslogtreecommitdiff
path: root/docs/manual/developer
diff options
context:
space:
mode:
authorLuca Toscano <elukey@apache.org>2020-02-08 17:26:11 +0000
committerLuca Toscano <elukey@apache.org>2020-02-08 17:26:11 +0000
commit67631dfae067aa1363424b28b13e79cfaa849627 (patch)
treee662e12260f5feac21c6fbb164a45a6368c1223d /docs/manual/developer
parent84717cab5caa5f2f6b47af111b57bf6650b4cbe5 (diff)
downloadhttpd-67631dfae067aa1363424b28b13e79cfaa849627.tar.gz
documentation rebuild [skip ci]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1873802 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/developer')
-rw-r--r--docs/manual/developer/modguide.html.en4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en
index eb8f4b811b..a3839f4fbc 100644
--- a/docs/manual/developer/modguide.html.en
+++ b/docs/manual/developer/modguide.html.en
@@ -182,7 +182,7 @@ the server based on the value of this tag.
<h3><a name="hook_declaration" id="hook_declaration">Hooking into httpd</a></h3>
<p>
-To begin with, we only want to create a simple handler, that replies to the
+To begin with, we only want to create a simple handler that replies to the
client browser when a specific URL is requested, so we won't bother setting
up configuration handlers and directives just yet. Our initial module
definition will look like this:</p>
@@ -210,7 +210,7 @@ just want to hook onto the requests and possibly handle some of them. </p>
is the name of a function we will create to manage how we hook onto the
request process. In this example module, the function has just one purpose;
To create a simple hook that gets called after all the rewrites, access
-control etc has been handled. Thus, we will let the server know, that we want
+control etc has been handled. Thus, we will let the server know that we want
to hook into its process as one of the last modules:
</p>