1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

fix some grammar mistakes, mostly in comments

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1080821 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2011-03-12 00:35:39 +00:00
parent d7edefbbe4
commit 4598f1a7d4
13 changed files with 20 additions and 20 deletions

View File

@@ -149,7 +149,7 @@ static char *get_path_param(apr_pool_t *pool, char *url,
path += strlen(name);
if (*path == '=') {
/*
* Session path was found, get it's value
* Session path was found, get its value
*/
++path;
if (*path) {
@@ -180,7 +180,7 @@ static char *get_cookie_param(request_rec *r, const char *name)
++start_cookie;
if (*start_cookie++ == '=' && *start_cookie) {
/*
* Session cookie was found, get it's value
* Session cookie was found, get its value
*/
char *end_cookie, *cookie;
cookie = apr_pstrdup(r->pool, start_cookie);
@@ -654,7 +654,7 @@ static void recalc_factors(proxy_balancer *balancer)
/* Recalculate lbfactors */
workers = (proxy_worker **)balancer->workers->elts;
/* Special case if there is only one worker it's
/* Special case if there is only one worker its
* load factor will always be 1
*/
if (balancer->workers->nelts == 1) {