From: Mike Rumph
Date: Mon, 27 Jan 2020 22:37:22 +0000 (+0000)
Subject: Fixed some grammar errors in the docs.
X-Git-Tag: 2.5.0-alpha2-ci-test-only~1691
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3833f37fd2377eee03d5b688eec165c775c27ef1;p=thirdparty%2Fapache%2Fhttpd.git
Fixed some grammar errors in the docs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1873230 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/developer/modguide.html.en b/docs/manual/developer/modguide.html.en
index cdd93a34b96..8819e860ac3 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.
-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:
@@ -210,7 +210,7 @@ just want to hook onto the requests and possibly handle some of them.
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:
diff --git a/docs/manual/developer/modguide.xml b/docs/manual/developer/modguide.xml
index 50a6b93a277..8ceebcdf78a 100644
--- a/docs/manual/developer/modguide.xml
+++ b/docs/manual/developer/modguide.xml
@@ -180,7 +180,7 @@ the server based on the value of this tag.
Hooking into httpd
-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:
@@ -209,7 +209,7 @@ just want to hook onto the requests and possibly handle some of them.
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:
diff --git a/docs/manual/mod/mod_status.html.en b/docs/manual/mod/mod_status.html.en
index c2b62914982..6782d431e2d 100644
--- a/docs/manual/mod/mod_status.html.en
+++ b/docs/manual/mod/mod_status.html.en
@@ -50,9 +50,9 @@ performance
The details given are:
- - The number of worker serving requests
+ - The number of workers serving requests
- - The number of idle worker
+ - The number of idle workers
- The status of each worker, the number of requests that
worker has performed and the total number of bytes served by
diff --git a/docs/manual/mod/mod_status.xml b/docs/manual/mod/mod_status.xml
index 4dc5822f49d..ee320a2f23a 100644
--- a/docs/manual/mod/mod_status.xml
+++ b/docs/manual/mod/mod_status.xml
@@ -41,9 +41,9 @@ performance
The details given are:
- - The number of worker serving requests
+ - The number of workers serving requests
- - The number of idle worker
+ - The number of idle workers
- The status of each worker, the number of requests that
worker has performed and the total number of bytes served by
diff --git a/docs/manual/programs/configure.html.en b/docs/manual/programs/configure.html.en
index ae740de5393..9fc05f1f29d 100644
--- a/docs/manual/programs/configure.html.en
+++ b/docs/manual/programs/configure.html.en
@@ -278,7 +278,7 @@
is
yes.
--enable-MODULE=shared
- - The corresponding module will be build as DSO module.
+
- The corresponding module will be built as a DSO module.
By default enabled modules are linked dynamically.
--enable-MODULE=static
diff --git a/docs/manual/programs/configure.xml b/docs/manual/programs/configure.xml
index 1ff60e62019..ab3523c80dc 100644
--- a/docs/manual/programs/configure.xml
+++ b/docs/manual/programs/configure.xml
@@ -274,7 +274,7 @@
is yes.
--enable-MODULE=shared
- - The corresponding module will be build as DSO module.
+
- The corresponding module will be built as a DSO module.
By default enabled modules are linked dynamically.
--enable-MODULE=static
diff --git a/docs/manual/vhosts/fd-limits.html.en b/docs/manual/vhosts/fd-limits.html.en
index 40b927e3856..55deb61f7b0 100644
--- a/docs/manual/vhosts/fd-limits.html.en
+++ b/docs/manual/vhosts/fd-limits.html.en
@@ -68,9 +68,9 @@
information on doing this.)
-
- If you system falls into 1 or 2 (above), then increase the
+ If your system falls into 1 or 2 (above), then increase the
file descriptor limit before starting Apache, using a
- script like
+ script like:
#!/bin/sh
@@ -107,7 +107,7 @@ each line. (See mod_lo
more about customizing your log files.)
When you wish to split your log file into its component parts (one
-file per virtual host) you can use the program split-logfile to accomplish
+file per virtual host), you can use the program split-logfile to accomplish
this. You'll find this program in the support directory
of the Apache distribution.
diff --git a/docs/manual/vhosts/fd-limits.xml b/docs/manual/vhosts/fd-limits.xml
index 01091ee2ec9..787a1aa466b 100644
--- a/docs/manual/vhosts/fd-limits.xml
+++ b/docs/manual/vhosts/fd-limits.xml
@@ -64,9 +64,9 @@
information on doing this.)
-
- If you system falls into 1 or 2 (above), then increase the
+ If your system falls into 1 or 2 (above), then increase the
file descriptor limit before starting Apache, using a
- script like
+ script like:
#!/bin/sh
@@ -103,7 +103,7 @@ each line. (See mod_log_config for
more about customizing your log files.)
When you wish to split your log file into its component parts (one
-file per virtual host) you can use the program split-logfile to accomplish
this. You'll find this program in the support directory
of the Apache distribution.