diff options
author | Yann Collet <cyan@fb.com> | 2017-03-24 17:34:18 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2017-03-24 17:34:18 (GMT) |
commit | 0863931a1c65c5f3caf7cf83c8780ac8e85d091e (patch) | |
tree | 835d4ac9cdca03ad7630eede17e76e7627cbd316 /lib/lz4frame.h | |
parent | 13f5cb2d5d26544bdebec73398af85c8ee74249e (diff) | |
download | lz4-0863931a1c65c5f3caf7cf83c8780ac8e85d091e.zip lz4-0863931a1c65c5f3caf7cf83c8780ac8e85d091e.tar.gz lz4-0863931a1c65c5f3caf7cf83c8780ac8e85d091e.tar.bz2 |
fixed API comment for LZ4F_createCompressionContext()
as reported by @nh2
Diffstat (limited to 'lib/lz4frame.h')
-rw-r--r-- | lib/lz4frame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4frame.h b/lib/lz4frame.h index c1acba5..a0cf0ab 100644 --- a/lib/lz4frame.h +++ b/lib/lz4frame.h @@ -212,7 +212,7 @@ typedef struct { LZ4FLIB_API unsigned LZ4F_getVersion(void); /*! LZ4F_createCompressionContext() : * The first thing to do is to create a compressionContext object, which will be used in all compression operations. - * This is achieved using LZ4F_createCompressionContext(), which takes as argument a version and an LZ4F_preferences_t structure. + * This is achieved using LZ4F_createCompressionContext(), which takes as argument a version. * The version provided MUST be LZ4F_VERSION. It is intended to track potential version mismatch, notably when using DLL. * The function will provide a pointer to a fully allocated LZ4F_cctx object. * If @return != zero, there was an error during context creation. |