From 8a287dcfe9b62b48aa0129a9001523ab726d3579 Mon Sep 17 00:00:00 2001 From: Kurt Schwehr <schwehr@google.com> Date: Thu, 7 Jan 2021 07:48:07 -0800 Subject: [PATCH] Fix the spelling of length. (#14) --- src/encode.c | 2 +- tests/check_aec.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/encode.c b/src/encode.c index e2782a0..1cf98d2 100644 --- a/src/encode.c +++ b/src/encode.c @@ -339,7 +339,7 @@ static uint32_t assess_splitting_option(struct aec_stream *strm) increases, then the minimum will be found with smaller k. For increasing k we know that we will gain block_size bits in - length through the larger binary part. If the FS lenth is less + length through the larger binary part. If the FS length is less than the block size then a reduced FS part can't compensate the larger binary part. So we know that the CDS for k+1 will be larger than for k without actually computing the length. An diff --git a/tests/check_aec.h b/tests/check_aec.h index 2f6abd3..97c3b8a 100644 --- a/tests/check_aec.h +++ b/tests/check_aec.h @@ -12,7 +12,7 @@ struct test_state { unsigned char *ubuf; unsigned char *cbuf; unsigned char *obuf; - size_t ibuf_len; /* input buffer legth may be shorter than buf_len */ + size_t ibuf_len; /* input buffer length may be shorter than buf_len */ size_t buf_len; size_t cbuf_len; long long int xmax; -- GitLab