From 7c08cc76e6ca275e315f5cd50f639b21ef972ed2 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 28 Aug 2020 11:47:56 +0300 Subject: Misspell fix. --- tl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tl.c') diff --git a/tl.c b/tl.c index aaf01c5..6f7ac34 100644 --- a/tl.c +++ b/tl.c @@ -70,7 +70,7 @@ static void tl_list_free(struct tl_list *l) /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * string * Strings are represented as usual char * null-terminated string. - * Size and length are stored before the string (so it is fat pointer). + * Size and length are stored before the string (so it is a fat pointer). */ static int *tl_string_size(char *str) { return ((int *) str) - 2; } static int *tl_string_len(char *str) { return ((int *) str) - 1; } -- cgit v1.2.3