Fix style nits

This commit is contained in:
Evan Shaw 2015-01-08 19:34:58 +13:00
parent 5261ef498f
commit 648ee727a1
2 changed files with 4 additions and 3 deletions

View File

@ -108,7 +108,8 @@ DECLARE_BUFFER(Value, Value);
typedef struct
{
Obj obj;
size_t length; // not including null terminator
// Does not include the null terminator.
size_t length;
char value[];
} ObjString;