Signed-off-by: Steffen Prohaska <prohaska@xxxxxx> --- strbuf.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Note, the patch is against Junio's pu. Steffen diff --git a/strbuf.h b/strbuf.h index 9720826..e5cdd1e 100644 --- a/strbuf.h +++ b/strbuf.h @@ -24,11 +24,11 @@ * * 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 + * // 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. -- 1.5.3.4.464.ge1bc2 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html