]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lz_optimal.h
Remove duplicate words & fix grammatical errors
[wimlib] / include / wimlib / lz_optimal.h
index 95333db6b273851ec423337486f7e4ea45ac2b84..1e8419865fc7abe56c9b09402431690f08ebb405 100644 (file)
@@ -256,7 +256,7 @@ typedef lz_mc_cost_t (*lz_get_match_cost_t)(LZ_COMPRESSOR *ctx,
  *
  * This is based on the algorithm used in 7-Zip's DEFLATE encoder, written by
  * Igor Pavlov.  However it also attempts to account for adaptive state, such as
- * a LRU queue of recent match offsets.
+ * an LRU queue of recent match offsets.
  *
  * Unlike a greedy parser that always takes the longest match, or even a "lazy"
  * parser with one match/literal look-ahead like zlib, the algorithm used here