Fixed some typos. (#7282)

This commit is contained in:
Bruce Mitchener
2024-02-02 00:30:00 +07:00
committed by GitHub
parent 6172c22c5d
commit f50ddc431e
5 changed files with 5 additions and 5 deletions

View File

@@ -641,7 +641,7 @@ void ImDrawList::PrimReserve(int idx_count, int vtx_count)
_IdxWritePtr = IdxBuffer.Data + idx_buffer_old_size;
}
// Release the a number of reserved vertices/indices from the end of the last reservation made with PrimReserve().
// Release the number of reserved vertices/indices from the end of the last reservation made with PrimReserve().
void ImDrawList::PrimUnreserve(int idx_count, int vtx_count)
{
IM_ASSERT_PARANOID(idx_count >= 0 && vtx_count >= 0);