summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2004-06-16 11:19:22 +0000
committerBram Moolenaar <Bram@vim.org>2004-06-16 11:19:22 +0000
commited20346f0b81d1d89c22c9616abe8e47b4c17f08 (patch)
tree249992fe05850523ab4ed4bc8f66effc8a3251b9 /src/structs.h
parent071d4279d6ab81b7187b48f3a0fc61e587b6db6c (diff)
downloadvim-git-ed20346f0b81d1d89c22c9616abe8e47b4c17f08.tar.gz
Various changes
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index ac0a795cb..0edd729da 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -56,7 +56,7 @@ typedef struct growarray
{
int ga_len; /* current number of items used */
int ga_room; /* number of unused items at the end */
- int ga_itemsize; /* sizeof one item */
+ int ga_itemsize; /* sizeof(item) */
int ga_growsize; /* number of items to grow each time */
void *ga_data; /* pointer to the first item */
} garray_T;