]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor code comment update
authorYann Collet <cyan@fb.com>
Fri, 14 Sep 2018 23:06:35 +0000 (16:06 -0700)
committerYann Collet <cyan@fb.com>
Fri, 14 Sep 2018 23:06:35 +0000 (16:06 -0700)
doc/zstd_manual.html
lib/zstd.h

index 5b9f07960dd69a1b34f55cadc617486891dd951c..cdfeb7094b6cfe02d3e1b4d7d1aa6f8a40e6637e 100644 (file)
@@ -43,9 +43,8 @@
   The library supports regular compression levels from 1 up to ZSTD_maxCLevel(),
   which is currently 22. Levels >= 20, labeled `--ultra`, should be used with
   caution, as they require more memory. The library also offers negative
-  compression levels (all negative integers are valid levels), which extend the
-  range of speed vs. ratio preferences to increasingly extremely strongly
-  prioritize speed.
+  compression levels, which extend the range of speed vs. ratio preferences.
+  The lower the level, the faster the speed (at the cost of compression).
 
   Compression can be done in:
     - a single step (described as Simple API)
index 72fc3590b4b40f84b0d4967aedd056a4312efc0b..ac6f918a7799e729e1fd19937bcd79d4609782a8 100644 (file)
@@ -46,9 +46,8 @@ extern "C" {
   The library supports regular compression levels from 1 up to ZSTD_maxCLevel(),
   which is currently 22. Levels >= 20, labeled `--ultra`, should be used with
   caution, as they require more memory. The library also offers negative
-  compression levels (all negative integers are valid levels), which extend the
-  range of speed vs. ratio preferences to increasingly extremely strongly
-  prioritize speed.
+  compression levels, which extend the range of speed vs. ratio preferences.
+  The lower the level, the faster the speed (at the cost of compression).
 
   Compression can be done in:
     - a single step (described as Simple API)