From: Pat Notz Date: Thu, 16 Sep 2010 20:53:23 +0000 (-0600) Subject: strbuf.h: fix comment typo X-Git-Tag: v1.7.3.1~15 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4af3fab06e41d031ccb2b948ddd7c73159dd9d49;p=git.git strbuf.h: fix comment typo Signed-off-by: Pat Notz Signed-off-by: Junio C Hamano --- diff --git a/strbuf.h b/strbuf.h index fac2dbc24..675a91f93 100644 --- a/strbuf.h +++ b/strbuf.h @@ -16,7 +16,7 @@ * * 2. the ->buf member is a byte array that has at least ->len + 1 bytes * allocated. The extra byte is used to store a '\0', allowing the ->buf - * member to be a valid C-string. Every strbuf function ensure this + * member to be a valid C-string. Every strbuf function ensures this * invariant is preserved. * * Note that it is OK to "play" with the buffer directly if you work it