summaryrefslogtreecommitdiff
path: root/strbuf.h
diff options
context:
space:
mode:
authorSteffen Prohaska <prohaska@zib.de>2007-11-04 08:02:21 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-06 05:09:39 (GMT)
commita1f611d5d03d7849f4d7f47f5bd39b5c44808bb5 (patch)
treeed74390322a860a18ab2c32d950f6a3e3a197a7e /strbuf.h
parent9b3beb581216fc89972e926574b9d3b243d5e4f4 (diff)
downloadgit-a1f611d5d03d7849f4d7f47f5bd39b5c44808bb5.zip
git-a1f611d5d03d7849f4d7f47f5bd39b5c44808bb5.tar.gz
git-a1f611d5d03d7849f4d7f47f5bd39b5c44808bb5.tar.bz2
Fix comment in strbuf.h to use correct name strbuf_avail()
Signed-off-by: Steffen Prohaska <prohaska@zib.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.h')
-rw-r--r--strbuf.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/strbuf.h b/strbuf.h
index 9b9e861..cd7f295 100644
--- a/strbuf.h
+++ b/strbuf.h
@@ -23,12 +23,12 @@
* that way:
*
* strbuf_grow(sb, SOME_SIZE);
- * // ... here the memory areay starting at sb->buf, and of length
- * // sb_avail(sb) is all yours, and you are sure that sb_avail(sb) is at
- * // least SOME_SIZE
+ * ... Here, the memory array starting at sb->buf, and of length
+ * ... strbuf_avail(sb) is all yours, and you are sure that
+ * ... strbuf_avail(sb) is at least SOME_SIZE.
* strbuf_setlen(sb, sb->len + SOME_OTHER_SIZE);
*
- * Of course, SOME_OTHER_SIZE must be smaller or equal to sb_avail(sb).
+ * Of course, SOME_OTHER_SIZE must be smaller or equal to strbuf_avail(sb).
*
* Doing so is safe, though if it has to be done in many places, adding the
* missing API to the strbuf module is the way to go.