Skip to content

Commit e589116

Browse files
nraminxfeep
authored andcommitted
Text change
1 parent 19d9a3d commit e589116

11 files changed

+139
-139
lines changed

Directives.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ Access handler has the same form with rewrite handle. When it returns `phase-don
559559
, Nginx will continue the next phase otherwise nginx will response directly typically with some error information,
560560
such as `401 Unauthorized`, `403 Forbidden`, etc.
561561

562-
Here 's an example to implement a simple HTTP Basic Authentication.
562+
Here's an example to implement a simple HTTP Basic Authentication.
563563

564564
```nginx
565565

Directives.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ <h2>
556556
Access handler has the same form with rewrite handle. When it returns <code>phase-done</code> (Clojure) or <code>PHASE_DONE</code> (Groovy/Java)
557557
, Nginx will continue the next phase otherwise nginx will response directly typically with some error information,
558558
such as <code>401 Unauthorized</code>, <code>403 Forbidden</code>, etc.</p>
559-
<p>Here 's an example to implement a simple HTTP Basic Authentication.</p>
559+
<p>Here's an example to implement a simple HTTP Basic Authentication.</p>
560560
<div class="highlight highlight-source-nginx"><pre>
561561
<span class="pl-k">location</span> <span class="pl-en">/basicAuth </span>{
562562
<span class="pl-k">access_handler_type</span> <span class="pl-s">'java'</span>;

HISTORY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ comments there would not be such example project. (issue #91)
127127
1. New Directives: rewrite_handler_type, access_handler_type, header_filter_type, body_filter_type
128128
1. New Feature: Supports nested locations (issue #56)
129129
1. Bug Fix : uppercase letters in nginx variable name can not work (issue #54)
130-
1. Bug Fix: The first registered handler will not work if there 's a asynchronous reading of request body (issue #51)
130+
1. Bug Fix: The first registered handler will not work if there's a asynchronous reading of request body (issue #51)
131131
1. Enhancement: `handlers_lazy_init` can be used to make handler initialized lazily or eagerly (issue #52)
132132

133133

HISTORY.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ <h2>
135135
<li>New Directives: rewrite_handler_type, access_handler_type, header_filter_type, body_filter_type</li>
136136
<li>New Feature: Supports nested locations (issue #56)</li>
137137
<li>Bug Fix : uppercase letters in nginx variable name can not work (issue #54)</li>
138-
<li>Bug Fix: The first registered handler will not work if there 's a asynchronous reading of request body (issue #51)</li>
138+
<li>Bug Fix: The first registered handler will not work if there's a asynchronous reading of request body (issue #51)</li>
139139
<li>Enhancement: <code>handlers_lazy_init</code> can be used to make handler initialized lazily or eagerly (issue #52)</li>
140140
</ol>
141141
<h2>

More.md

+43-43
Large diffs are not rendered by default.

More.md.html

+44-44
Large diffs are not rendered by default.

api/nginx.clojure.core.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
current thread and will flush data on the background asynchronously and later close the channel safely</pre></div></div><div class="public anchor" id="var-closed.3F"><h3>closed?</h3><div class="usage"><code>(closed? ch)</code></div><div class="doc"><pre class="plaintext"></pre></div></div><div class="public anchor" id="var-get-context"><h3>get-context</h3><div class="usage"><code>(get-context ch)</code></div><div class="doc"><pre class="plaintext"></pre></div></div><div class="public anchor" id="var-on-close.21"><h3>on-close!</h3><div class="usage"><code>(on-close! ch attachment listener)</code></div><div class="doc"><pre class="plaintext">Add a close event listener.
7373
`attachement is a object which will be passed to listener when close event happens
7474
`listener is a function like (fn[attachement] ... )
75-
A close event will happen immediately when channel is closed by either of these three cases:
75+
A close event will happen immediately when a channel is closed by either of these three cases:
7676
(1) channel close function/method is invoked on this channel, e.g. (close! ch)
7777
(2) inner unrecoverable error happens with this channel, e.g. not enough memory to read/write
7878
(3) remote client connection is closed or broken.</pre></div></div><div class="public anchor" id="var-send.21"><h3>send!</h3><div class="usage"><code>(send! ch data flush? last?)</code></div><div class="doc"><pre class="plaintext">Asynchronously send data to channel without blocking current thread.

directives.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ <h2>
658658
Access handler has the same form with rewrite handle. When it returns <code>phase-done</code> (Clojure) or <code>PHASE_DONE</code> (Groovy/Java)
659659
, Nginx will continue the next phase otherwise nginx will response directly typically with some error information,
660660
such as <code>401 Unauthorized</code>, <code>403 Forbidden</code>, etc.</p>
661-
<p>Here 's an example to implement a simple HTTP Basic Authentication.</p>
661+
<p>Here's an example to implement a simple HTTP Basic Authentication.</p>
662662
<div class="highlight highlight-source-nginx"><pre>
663663
<span class="pl-k">location</span> <span class="pl-en">/basicAuth </span>{
664664
<span class="pl-k">access_handler_type</span> <span class="pl-s">'java'</span>;

downloads.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ <h2>
237237
<li>New Directives: rewrite_handler_type, access_handler_type, header_filter_type, body_filter_type</li>
238238
<li>New Feature: Supports nested locations (issue #56)</li>
239239
<li>Bug Fix : uppercase letters in nginx variable name can not work (issue #54)</li>
240-
<li>Bug Fix: The first registered handler will not work if there 's a asynchronous reading of request body (issue #51)</li>
240+
<li>Bug Fix: The first registered handler will not work if there's a asynchronous reading of request body (issue #51)</li>
241241
<li>Enhancement: <code>handlers_lazy_init</code> can be used to make handler initialized lazily or eagerly (issue #52)</li>
242242
</ol>
243243
<h2>

0 commit comments

Comments
 (0)