mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 16:34:45 +00:00
Fix XML documentation comments in buffer structs
Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
@@ -11,6 +11,6 @@ public unsafe struct ZSTD_inBuffer_s
|
||||
/// <summary>size of input buffer</summary>
|
||||
public nuint size;
|
||||
|
||||
/// <summary>position where reading stopped. Will be updated. Necessarily 0 <= pos <= size</summary>
|
||||
/// <summary>position where reading stopped. Will be updated. Necessarily 0 to size inclusive.</summary>
|
||||
public nuint pos;
|
||||
}
|
||||
|
||||
@@ -8,6 +8,6 @@ public unsafe struct ZSTD_outBuffer_s
|
||||
/// <summary>size of output buffer</summary>
|
||||
public nuint size;
|
||||
|
||||
/// <summary>position where writing stopped. Will be updated. Necessarily 0 <= pos <= size</summary>
|
||||
/// <summary>position where writing stopped. Will be updated. Necessarily 0 to size inclusive.</summary>
|
||||
public nuint pos;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user