diff --git a/nselib/http.lua b/nselib/http.lua
index 342172320..49f0d5595 100644
--- a/nselib/http.lua
+++ b/nselib/http.lua
@@ -22,8 +22,8 @@
-- * rawheader - A numbered array of the headers, exactly as the server sent them. While header['content-type'] might be 'text/html', rawheader[3] might be 'Content-type: text/html'.
-- * cookies - A numbered array of the cookies the server sent. Each cookie is a table with the expected keys, such as name, value, path, domain, and expires. This table can be sent to the server in subsequent responses in the options table to any function (see below).
-- * rawbody - The full body, as returned by the server. Chunked transfer encoding is handled transparently.
--- * body - The full body, after processing the Content-Encoding header, if any. The Content-Encoding and Content-Length headers are adjusted to maintain consistency.
--- * incomplete - Partially received response (if any), in case of an error.
+-- * body - The full body, after processing the Content-Encoding header, if any. The Content-Encoding and Content-Length headers are adjusted to stay consistent with the processed body.
+-- * incomplete - Partially received response object, in case of an error.
-- * truncated - A flag to indicate that the body has been truncated
-- * decoded - A list of processed named content encodings (like "identity" or "gzip")
-- * undecoded - A list of named content encodings that could not be processed (due to lack of support or the body being corrupted for a given encoding). A body has been successfully decoded if this list is empty (or nil, if no encodings were used in the first place).
@@ -115,14 +115,15 @@
--
-- @args http.max-body-size Limit the received body to specific number of bytes.
-- An oversized body results in an error unless script argument
--- args http.truncated-ok or request option
+-- http.truncated-ok or request option
-- truncated_ok is set to true. The default is 2097152 (2MB). Use
-- value -1 to disable the limit altogether. This argument can be overridden
-- case-by-case with request option max_body_size.
--
--- @args http.truncated-ok Do not treat oversized body as error. By default
--- they do result in an error. This argument can be overridden case-by-case with
--- request option truncated_ok.
+-- @args http.truncated-ok Do not treat oversized body as error. (Use response
+-- object flag truncated to check if the returned body has been
+-- truncated.) This argument can be overridden case-by-case with request option
+-- truncated_ok.
-- TODO
-- Implement cache system for http pipelines