diff --git a/src/SharpCompress/Compressors/ZStandard/Unsafe/ZSTD_inBuffer_s.cs b/src/SharpCompress/Compressors/ZStandard/Unsafe/ZSTD_inBuffer_s.cs index 605225ef..b68d019b 100644 --- a/src/SharpCompress/Compressors/ZStandard/Unsafe/ZSTD_inBuffer_s.cs +++ b/src/SharpCompress/Compressors/ZStandard/Unsafe/ZSTD_inBuffer_s.cs @@ -11,6 +11,6 @@ public unsafe struct ZSTD_inBuffer_s /// size of input buffer public nuint size; - /// position where reading stopped. Will be updated. Necessarily 0 <= pos <= size + /// position where reading stopped. Will be updated. Necessarily 0 to size inclusive. public nuint pos; } diff --git a/src/SharpCompress/Compressors/ZStandard/Unsafe/ZSTD_outBuffer_s.cs b/src/SharpCompress/Compressors/ZStandard/Unsafe/ZSTD_outBuffer_s.cs index 1fde5ae8..782e24b3 100644 --- a/src/SharpCompress/Compressors/ZStandard/Unsafe/ZSTD_outBuffer_s.cs +++ b/src/SharpCompress/Compressors/ZStandard/Unsafe/ZSTD_outBuffer_s.cs @@ -8,6 +8,6 @@ public unsafe struct ZSTD_outBuffer_s /// size of output buffer public nuint size; - /// position where writing stopped. Will be updated. Necessarily 0 <= pos <= size + /// position where writing stopped. Will be updated. Necessarily 0 to size inclusive. public nuint pos; }