@@ -9,7 +9,7 @@ is heavily influenced by
9
9
Perl and Bourne Shell as far as I can see, despite the fact that it might not
10
10
be Turing-Complete and it is declarative in many places. This is a
11
11
distinguishing feature of Nginx, as compared
12
- to the other web servers
12
+ to other web servers
13
13
like Apache or Lighttpd. Being a programming language, "variables" are
14
14
thus a natural part of it (exceptions do exist, of course, as in pure
15
15
functional languages like Haskell).
@@ -117,7 +117,7 @@ Luckily, workarounds do exist and here is one proposed by Maxim Dounin: first
117
117
we assign to a variable a literal string containing a dollar sign character
118
118
via a configuration directive that does I<not> support "variable interpolation"
119
119
(remember that not all the directives support "variable interpolation"?), and
120
- then reference this variable later wherever we need a dollar sign. Here is such
120
+ then reference this variable later whenever we need a dollar sign. Here is such
121
121
an
122
122
example to demonstrate the idea:
123
123
@@ -159,7 +159,7 @@ with the string C<"$"> unconditionally.
159
159
There is a special case for "variable interpolation", that is, when the variable
160
160
name is followed directly by characters allowed in variable names (like
161
161
letters, digits, and underscores).
162
- In such cases we can use a special notation to disambiguate the variable name
162
+ In such cases, we can use a special notation to disambiguate the variable name
163
163
from the subsequent literal characters, for instance,
164
164
165
165
:nginx
0 commit comments