Skip to content

Commit

Permalink
Update DOC
Browse files Browse the repository at this point in the history
  • Loading branch information
lpgauth committed Dec 14, 2017
1 parent 58adfc9 commit c64095b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion doc/buoy.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ body() = undefined | iodata()


<pre><code>
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer(), headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer() | chunked, headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion doc/buoy_app.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ backlog_size() = pos_integer() | infinity


<pre><code>
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer(), headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer() | chunked, headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion doc/buoy_client.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ backlog_size() = pos_integer() | infinity


<pre><code>
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer(), headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer() | chunked, headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion doc/buoy_compiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ backlog_size() = pos_integer() | infinity


<pre><code>
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer(), headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer() | chunked, headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion doc/buoy_pool.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ backlog_size() = pos_integer() | infinity


<pre><code>
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer(), headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer() | chunked, headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion doc/buoy_protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ body() = undefined | iodata()


<pre><code>
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer(), headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer() | chunked, headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion doc/buoy_sup.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ backlog_size() = pos_integer() | infinity


<pre><code>
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer(), headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer() | chunked, headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
</code></pre>


Expand Down
2 changes: 1 addition & 1 deletion doc/buoy_utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ backlog_size() = pos_integer() | infinity


<pre><code>
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer(), headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
buoy_resp() = #buoy_resp{state = body | done, body = undefined | binary(), content_length = undefined | non_neg_integer() | chunked, headers = undefined | [binary()], reason = undefined | binary(), status_code = undefined | 100..505}
</code></pre>


Expand Down

0 comments on commit c64095b

Please sign in to comment.