File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ impl Compress {
362
362
output : & mut Vec < u8 > ,
363
363
flush : FlushCompress ,
364
364
) -> Result < Status , CompressError > {
365
- // SAFETY: bytes_written is the number of bytes writte into `out`
365
+ // SAFETY: bytes_written is the number of bytes written into `out`
366
366
unsafe {
367
367
write_to_spare_capacity_of_vec ( output, |out| {
368
368
let before = self . total_out ( ) ;
@@ -499,7 +499,7 @@ impl Decompress {
499
499
output : & mut Vec < u8 > ,
500
500
flush : FlushDecompress ,
501
501
) -> Result < Status , DecompressError > {
502
- // SAFETY: bytes_written is the number of bytes writte into `out`
502
+ // SAFETY: bytes_written is the number of bytes written into `out`
503
503
unsafe {
504
504
write_to_spare_capacity_of_vec ( output, |out| {
505
505
let before = self . total_out ( ) ;
You can’t perform that action at this time.
0 commit comments