summaryrefslogtreecommitdiffstats
path: root/docs/manual/misc/client_block_api.html
diff options
context:
space:
mode:
authorMarc Slemko <marc@apache.org>1997-05-01 07:27:03 +0200
committerMarc Slemko <marc@apache.org>1997-05-01 07:27:03 +0200
commit12e17e74b52b8509ab574e88f0250432db7e5928 (patch)
tree298de9f765ae79d4a527a13dc4c2f838719faceb /docs/manual/misc/client_block_api.html
parentA few more things that could be added... (diff)
downloadapache2-12e17e74b52b8509ab574e88f0250432db7e5928.tar.xz
apache2-12e17e74b52b8509ab574e88f0250432db7e5928.zip
Big spelling and HTML cleanup of docs. Thanks go to weblint and ispell
and their authors. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78081 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/misc/client_block_api.html')
-rw-r--r--docs/manual/misc/client_block_api.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/misc/client_block_api.html b/docs/manual/misc/client_block_api.html
index b01a588622..a42420af20 100644
--- a/docs/manual/misc/client_block_api.html
+++ b/docs/manual/misc/client_block_api.html
@@ -18,7 +18,7 @@ function (<code>read_client_block</code>) to get the data.
<p>However, HTTP/1.1 requires several things of POST and PUT request
handlers that did not fit into this module, and all existing modules
have to be rewritten. The API calls for handling this have been
-furthur abstracted, so that future HTTP protocol changes can be
+further abstracted, so that future HTTP protocol changes can be
accomplished while remaining backwards-compatible.</p>
<hr>
@@ -33,7 +33,7 @@ accomplished while remaining backwards-compatible.</p>
<ol>
<li>Call <code>setup_client_block()</code> near the beginning of the request
- handler. This will set up all the neccessary properties, and
+ handler. This will set up all the necessary properties, and
will return either OK, or an error code. If the latter,
the module should return that error code. The second parameter
selects the policy to apply if the request message indicates a
@@ -63,7 +63,7 @@ accomplished while remaining backwards-compatible.</p>
<li>Finally, call <code>get_client_block</code> in a loop. Pass it a
buffer and its
- size. It will put data into the buffer (not neccessarily the full
+ size. It will put data into the buffer (not necessarily the full
buffer, in the case of chunked inputs), and return the length of
the input block. When it is done reading, it will
return 0 if EOF, or -1 if there was an error.