File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -329,8 +329,8 @@ pub enum Compression {
329
329
/// Extremely fast but light compression.
330
330
///
331
331
/// Note: When used in streaming mode, this compression level can actually result in files
332
- /// *larger* than would be produced by `NoCompression` because it doesn't do any buffering of
333
- /// the output stream to detect whether the data is being compressed or not.
332
+ /// *larger* than would be produced by `NoCompression` on incompressible data because
333
+ /// it doesn't do any buffering of the output stream to detect whether the data is being compressed or not.
334
334
Fastest ,
335
335
/// Extremely fast compression with a decent compression ratio.
336
336
///
@@ -339,7 +339,7 @@ pub enum Compression {
339
339
/// better compression ratio than the fastest modes of other encoders.
340
340
///
341
341
/// Like `Compression::Fast` this can currently produce files larger than `NoCompression` in
342
- /// streaming mode. This may change in the future.
342
+ /// streaming mode when given incompressible data . This may change in the future.
343
343
Fast ,
344
344
/// Balances encoding speed and compression ratio
345
345
Balanced ,
You can’t perform that action at this time.
0 commit comments