]> granicus.if.org Git - apache/commitdiff
odd assortment of spelling fixes
authorJeff Trawick <trawick@apache.org>
Mon, 24 May 2010 14:26:49 +0000 (14:26 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 24 May 2010 14:26:49 +0000 (14:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@947651 13f79535-47bb-0310-9956-ffa450edef68

STATUS
docs/manual/rewrite/flags.xml
include/util_ldap.h
modules/lua/docs/basic-configuration.txt
modules/metadata/mod_setenvif.c
modules/proxy/mod_proxy_fcgi.c
server/mpm/event/event.c
server/mpm/winnt/mpm_winnt.c

diff --git a/STATUS b/STATUS
index d7142b7c74349bab2e40784b2d13393d84354fdc..87ced0efd34392431b1d1c690e23a3112273939f 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -399,8 +399,8 @@ WISH LIST
 
   * mod_cache: Handle ESI tags.
 
-  * mod_cache: Resolve issue of how to cache page fragements (or perhaps
-    -if- we want to cache page fragements). Today, mod_cache/mod_mem_cache
+  * mod_cache: Resolve issue of how to cache page fragments (or perhaps
+    -if- we want to cache page fragments). Today, mod_cache/mod_mem_cache
     will cache #include 'virtual' requests (but not #include 'file'
     requests). This was accomplished by making CACHE_IN a
     CONTENT_SET-1 filter to force it to run before the SUBREQ_CORE
index 01a9254cb9c312ac472156d591328371486d69b2..eb9a42b2ff9dca69f845d3fc79a001cba553f3f6 100644 (file)
@@ -216,7 +216,7 @@ variables work.</p>
 contexts, including CGI programs, other RewriteRule directives, or
 CustomLog directives.</p>
 
-<p>The following example sets an evironment variable called 'image' to a
+<p>The following example sets an environment variable called 'image' to a
 value of '1' if the requested URI is an image file. Then, that
 environment variable is used to exclude those requests from the access
 log.</p>
index 9ff969d84629b25361798eead13a5d65dca427dd..0a90ff650db2aa5a9fcabb8296c3917c161f1d69 100644 (file)
@@ -360,7 +360,7 @@ APR_DECLARE_OPTIONAL_FN(int,uldap_ssl_supported,(request_rec *r));
 /**
  * Init the LDAP cache
  * @param pool The pool to use to initialise the cache
- * @param reqsize The size of the shared memory segement to request. A size
+ * @param reqsize The size of the shared memory segment to request. A size
  *                of zero requests the max size possible from
  *                apr_shmem_init()
  * @fn void util_ldap_cache_init(apr_pool_t *p, util_ldap_state_t *st)
index c20983349fbe5eeb2f11ca17cf1d4eb8ae9a74d7..b83769849f6244269b7cbe57698086b6b3ed10c3 100644 (file)
@@ -81,7 +81,7 @@ mod_lua exports several additional directives:
         file.
         
         In general stat or forever is good production and stat or never
-        for deveopment.
+        for development.
         
         Examples:
             LuaCodeCache stat
index 4649650ea582826a0085998e1c13eb7247a5cad5..7a16ca50a286f0526792ca3502bd5f2b74fcab0f 100644 (file)
@@ -59,7 +59,7 @@
  *
  * Examples:
  *
- * To set the enviroment variable LOCALHOST if the client is the local
+ * To set the environment variable LOCALHOST if the client is the local
  * machine:
  *
  *    SetEnvIf remote_addr 127.0.0.1 LOCALHOST
index db61537d0c3905728890905141a5493a6fc406c2..3de43bebd3f51cf644a43c037ee2c7e88670f986 100644 (file)
@@ -876,7 +876,7 @@ static int fcgi_do_request(apr_pool_t *p, request_rec *r,
         return HTTP_SERVICE_UNAVAILABLE;
     }
     
-    /* Step 2: Send Enviroment via FCGI_PARAMS */
+    /* Step 2: Send Environment via FCGI_PARAMS */
     rv = send_environment(conn, r, request_id);
     if (rv != APR_SUCCESS) {
         ap_log_error(APLOG_MARK, APLOG_ERR, rv, r->server,
index ea775d87ece736af7d4da891dc7e5cd2bbad0eb8..ed334996fbff386a64ff4309b33e8804f313fe2e 100644 (file)
@@ -25,7 +25,7 @@
  * this MPM has a dedicated thread for handling both the Listenting sockets,
  * and all sockets that are in a Keep Alive status.
  *
- * The MPM assumes the underlying apr_pollset implmentation is somewhat
+ * The MPM assumes the underlying apr_pollset implementation is somewhat
  * threadsafe.  This currently is only compatible with KQueue and EPoll.  This
  * enables the MPM to avoid extra high level locking or having to wake up the
  * listener thread when a keep-alive socket needs to be sent to it.
index 963dd0d1efdf8b9c3e4bd6ad08b512c09ed298f7..41b75d35323ad2e66a301f76f6efdb00c5fd4022 100644 (file)
@@ -81,7 +81,7 @@ apr_pool_t *pconf;
 /* definitions from child.c */
 void child_main(apr_pool_t *pconf);
 
-/* Only one of these, the pipe from our parent, ment only for
+/* Only one of these, the pipe from our parent, meant only for
  * one child worker's consumption (not to be inherited!)
  * XXX: decorate this name for the trunk branch, was left simplified
  *      only to make the 2.2 patch trivial to read.