aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-08-28 11:47:56 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-08-28 11:47:56 +0300
commit7c08cc76e6ca275e315f5cd50f639b21ef972ed2 (patch)
tree99a4b1ed3e46ebfa8ac8512ef413f058af1bcaae
parent9ea866aa40ec18fcad53918d064a481d06173216 (diff)
downloadtela-7c08cc76e6ca275e315f5cd50f639b21ef972ed2.tar
tela-7c08cc76e6ca275e315f5cd50f639b21ef972ed2.tar.xz
tela-7c08cc76e6ca275e315f5cd50f639b21ef972ed2.zip
Misspell fix.
-rw-r--r--tl.c2
1 files changed, 1 insertions, 1 deletions
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; }