summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2018-07-30 10:53:11 (GMT)
committerGitHub <noreply@github.com>2018-07-30 10:53:11 (GMT)
commit60b1c5e3f202aba7062775cd18f5a522a0f12d80 (patch)
treef9bc3342a5b6295518f897a7169b40c8838e59ad
parente95781dc2a30953a37d812175bf4fc8f0af7143a (diff)
parent2e52f03a12b8bb5fba8a86e063e0211e8afa503b (diff)
downloadlz4-60b1c5e3f202aba7062775cd18f5a522a0f12d80.zip
lz4-60b1c5e3f202aba7062775cd18f5a522a0f12d80.tar.gz
lz4-60b1c5e3f202aba7062775cd18f5a522a0f12d80.tar.bz2
Merge pull request #552 from jackluo923/dev
fixed spelling mistake in lz4_manual and lz4.h
-rw-r--r--doc/lz4_manual.html2
-rw-r--r--lib/lz4.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html
index e5044fe..3fc71e4 100644
--- a/doc/lz4_manual.html
+++ b/doc/lz4_manual.html
@@ -214,7 +214,7 @@ int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_stream);
<pre><b>int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, int dictSize);
</b><p> An LZ4_streamDecode_t context can be allocated once and re-used multiple times.
Use this function to start decompression of a new stream of blocks.
- A dictionary can optionnally be set. Use NULL or size 0 for a reset order.
+ A dictionary can optionally be set. Use NULL or size 0 for a reset order.
Dictionary is presumed stable : it must remain accessible and unmodified during next decompression.
@return : 1 if OK, 0 if error
diff --git a/lib/lz4.h b/lib/lz4.h
index 64914ab..a0eddce 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -305,7 +305,7 @@ LZ4LIB_API int LZ4_freeStreamDecode (LZ4_streamDecode_t* LZ4_str
/*! LZ4_setStreamDecode() :
* An LZ4_streamDecode_t context can be allocated once and re-used multiple times.
* Use this function to start decompression of a new stream of blocks.
- * A dictionary can optionnally be set. Use NULL or size 0 for a reset order.
+ * A dictionary can optionally be set. Use NULL or size 0 for a reset order.
* Dictionary is presumed stable : it must remain accessible and unmodified during next decompression.
* @return : 1 if OK, 0 if error
*/