diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2020-08-28 11:47:56 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2020-08-28 11:47:56 +0300 |
commit | 7c08cc76e6ca275e315f5cd50f639b21ef972ed2 (patch) | |
tree | 99a4b1ed3e46ebfa8ac8512ef413f058af1bcaae | |
parent | 9ea866aa40ec18fcad53918d064a481d06173216 (diff) | |
download | tela-7c08cc76e6ca275e315f5cd50f639b21ef972ed2.tar tela-7c08cc76e6ca275e315f5cd50f639b21ef972ed2.tar.xz tela-7c08cc76e6ca275e315f5cd50f639b21ef972ed2.zip |
Misspell fix.
-rw-r--r-- | tl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |