summaryrefslogtreecommitdiffstats
path: root/include/linux/zstd_lib.h
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2022-01-20 05:20:06 -0800
committerNick Terrell <terrelln@fb.com>2022-01-31 11:56:43 -0800
commit88a309465b3f05a100c3b81966982c0f9f5d23a6 (patch)
tree4949e0bfc8930fd78a39b988d1d554d09dde30a2 /include/linux/zstd_lib.h
parent26291c54e111ff6ba87a164d85d4a4e134b7315c (diff)
downloadlinux-stable-88a309465b3f05a100c3b81966982c0f9f5d23a6.tar.gz
linux-stable-88a309465b3f05a100c3b81966982c0f9f5d23a6.tar.bz2
linux-stable-88a309465b3f05a100c3b81966982c0f9f5d23a6.zip
lib: zstd: clean up double word in comment.
Remove the second 'a' and 'into'. Signed-off-by: Tom Rix <trix@redhat.com> Signed-off-by: Nick Terrell <terrelln@fb.com>
Diffstat (limited to 'include/linux/zstd_lib.h')
-rw-r--r--include/linux/zstd_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/zstd_lib.h b/include/linux/zstd_lib.h
index b8c7dbf98390..6b91758b61af 100644
--- a/include/linux/zstd_lib.h
+++ b/include/linux/zstd_lib.h
@@ -1330,7 +1330,7 @@ ZSTDLIB_API size_t ZSTD_generateSequences(ZSTD_CCtx* zc, ZSTD_Sequence* outSeqs,
/*! ZSTD_mergeBlockDelimiters() :
* Given an array of ZSTD_Sequence, remove all sequences that represent block delimiters/last literals
- * by merging them into into the literals of the next sequence.
+ * by merging them into the literals of the next sequence.
*
* As such, the final generated result has no explicit representation of block boundaries,
* and the final last literals segment is not represented in the sequences.
@@ -1377,7 +1377,7 @@ ZSTDLIB_API size_t ZSTD_compressSequences(ZSTD_CCtx* const cctx, void* dst, size
/*! ZSTD_writeSkippableFrame() :
* Generates a zstd skippable frame containing data given by src, and writes it to dst buffer.
*
- * Skippable frames begin with a a 4-byte magic number. There are 16 possible choices of magic number,
+ * Skippable frames begin with a 4-byte magic number. There are 16 possible choices of magic number,
* ranging from ZSTD_MAGIC_SKIPPABLE_START to ZSTD_MAGIC_SKIPPABLE_START+15.
* As such, the parameter magicVariant controls the exact skippable frame magic number variant used, so
* the magic number used will be ZSTD_MAGIC_SKIPPABLE_START + magicVariant.