aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2017-10-13 14:50:51 +0200
committerGitHub <noreply@github.com>2017-10-13 14:50:51 +0200
commit3e58ea5f90798a4c80f638a98f2d75b07a72af39 (patch)
tree29e58e31a5bec75235b5ea603b53b13ea7ae71c3 /docs
parent39ef4bbdcffd6316b5d3e95904cf9b0aa5e19504 (diff)
downloadbrotli-3e58ea5f90798a4c80f638a98f2d75b07a72af39.zip
brotli-3e58ea5f90798a4c80f638a98f2d75b07a72af39.tar.gz
brotli-3e58ea5f90798a4c80f638a98f2d75b07a72af39.tar.bz2
Update (#617)
* remove `const` on `BrotliDictionary` members * extend `ZofliNode` distance range to 128MiB * add missing `port.h` include to `quality.h` * fix typo in encoder API-doc * regenerate `decode.min.js`
Diffstat (limited to 'docs')
-rw-r--r--docs/encode.h.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/encode.h.3 b/docs/encode.h.3
index dd420bb..0ce776f 100644
--- a/docs/encode.h.3
+++ b/docs/encode.h.3
@@ -335,7 +335,7 @@ Compresses input stream to output stream\&. The values \fC*available_in\fP and \
.PP
After each call, \fC*available_in\fP will be decremented by the amount of input bytes consumed, and the \fC*next_in\fP pointer will be incremented by that amount\&. Similarly, \fC*available_out\fP will be decremented by the amount of output bytes written, and the \fC*next_out\fP pointer will be incremented by that amount\&.
.PP
-\fCtotal_out\fP, if it is not a null-pointer, will be set to the number of bytes decompressed since the last \fCstate\fP initialization\&.
+\fCtotal_out\fP, if it is not a null-pointer, will be set to the number of bytes compressed since the last \fCstate\fP initialization\&.
.PP
Internally workflow consists of 3 tasks:
.IP "1." 4