@@ -9,7 +9,7 @@ is heavily influenced by
99Perl and Bourne Shell as far as I can see, despite the fact that it might not
1010be Turing-Complete and it is declarative in many places. This is a
1111distinguishing feature of Nginx, as compared
12- to the other web servers
12+ to other web servers
1313like Apache or Lighttpd. Being a programming language, "variables" are
1414thus a natural part of it (exceptions do exist, of course, as in pure
1515functional languages like Haskell).
@@ -117,7 +117,7 @@ Luckily, workarounds do exist and here is one proposed by Maxim Dounin: first
117117we assign to a variable a literal string containing a dollar sign character
118118via a configuration directive that does I<not> support "variable interpolation"
119119(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
121121an
122122example to demonstrate the idea:
123123
@@ -159,7 +159,7 @@ with the string C<"$"> unconditionally.
159159There is a special case for "variable interpolation", that is, when the variable
160160name is followed directly by characters allowed in variable names (like
161161letters, 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
163163from the subsequent literal characters, for instance,
164164
165165 :nginx
0 commit comments