From 0ee56983d198b776878432703de664049b1be32e Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Mon, 13 May 2024 12:14:00 +0300 Subject: [PATCH] xz: Edit comments --- src/xz/coder.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/xz/coder.h b/src/xz/coder.h index 4e0351bd..96755f30 100644 --- a/src/xz/coder.h +++ b/src/xz/coder.h @@ -30,14 +30,12 @@ enum format_type { }; -/// Simple struct to track Block metadata specified through the -/// --block-list option. +/// Array of these hold the entries specified with --block-list. typedef struct { /// Uncompressed size of the Block uint64_t size; - /// Index into the filters[] representing the filter chain to use - /// for this Block. + /// Filter chain to use for this Block (chains[chain_num]) unsigned chain_num; } block_list_entry;