Fix XML documentation comments in buffer structs

Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-11-29 13:14:52 +00:00
parent 94c64b2a45
commit d3428b066e
2 changed files with 2 additions and 2 deletions

View File

@@ -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 &lt;= pos &lt;= size</summary>
/// <summary>position where reading stopped. Will be updated. Necessarily 0 to size inclusive.</summary>
public nuint pos;
}

View File

@@ -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 &lt;= pos &lt;= size</summary>
/// <summary>position where writing stopped. Will be updated. Necessarily 0 to size inclusive.</summary>
public nuint pos;
}