summaryrefslogtreecommitdiffstats
path: root/doc/lz4_manual.html
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2018-09-06 19:43:29 (GMT)
committerGitHub <noreply@github.com>2018-09-06 19:43:29 (GMT)
commit0f08c22c318356b8b9217376c3d4161c92e6ce1a (patch)
tree9e0f417c6b0f708905d1c873f4907f2613377016 /doc/lz4_manual.html
parentcd3945f532919a4b59994e742552798c6b21005a (diff)
parent0fea528e3a70f8578ca6e7f15d922dab8aa9ff25 (diff)
downloadlz4-0f08c22c318356b8b9217376c3d4161c92e6ce1a.zip
lz4-0f08c22c318356b8b9217376c3d4161c92e6ce1a.tar.gz
lz4-0f08c22c318356b8b9217376c3d4161c92e6ce1a.tar.bz2
Merge pull request #563 from lz4/docDict
updated documentation for dictionary compression
Diffstat (limited to 'doc/lz4_manual.html')
-rw-r--r--doc/lz4_manual.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html
index 3fc71e4..c7c5763 100644
--- a/doc/lz4_manual.html
+++ b/doc/lz4_manual.html
@@ -1,10 +1,10 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>1.8.2 Manual</title>
+<title>1.8.3 Manual</title>
</head>
<body>
-<h1>1.8.2 Manual</h1>
+<h1>1.8.3 Manual</h1>
<hr>
<a name="Contents"></a><h2>Contents</h2>
<ol>
@@ -179,7 +179,7 @@ int LZ4_freeStream (LZ4_stream_t* streamPtr);
'dst' buffer must be already allocated.
If dstCapacity >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster.
- Important : The previous 64KB of compressed data is assumed to remain present and unmodified in memory!
+ Important : The previous 64KB of source data is assumed to remain present and unmodified in memory!
Special 1 : When input is a double-buffer, they can have any size, including < 64 KB.
Make sure that buffers are separated by at least one byte.