aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2022-11-22 16:37:15 +0200
committerLasse Collin <lasse.collin@tukaani.org>2022-11-24 10:57:11 +0200
commit8309385b444bce23e56256e21fb008a170434008 (patch)
tree8b67698ba473d77036b2c674d570763c00881e96
parentliblzma: Fix infinite loop in LZMA encoder init with dict_size >= 2 GiB. (diff)
downloadxz-8309385b444bce23e56256e21fb008a170434008.tar.xz
liblzma: Fix language in a comment.
-rw-r--r--src/liblzma/common/stream_encoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/stream_encoder.c b/src/liblzma/common/stream_encoder.c
index 858cba47..4dfe88cb 100644
--- a/src/liblzma/common/stream_encoder.c
+++ b/src/liblzma/common/stream_encoder.c
@@ -319,7 +319,7 @@ stream_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator,
// Initialize the Block encoder. This way we detect unsupported
// filter chains when initializing the Stream encoder instead of
- // giving an error after Stream Header has already written out.
+ // giving an error after Stream Header has already been written out.
return stream_encoder_update(coder, allocator, filters, NULL);
}