From 2d3982b4afe9ff31d4ea67932db0b09cc1f1eebb Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 13 Dec 2020 21:52:59 +1100 Subject: [PATCH] docs: fix simple typo, speacial -> special (#1002) There is a small typo in expr.c. Should read `special` rather than `speacial`. --- expr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/expr.c b/expr.c index b8f7513b9..ca6f1f5e5 100644 --- a/expr.c +++ b/expr.c @@ -35,14 +35,14 @@ #include enum token_type { - /* speacial chars */ + /* special chars */ TOK_NOT, TOK_LT, TOK_GT, #define NR_COMBINATIONS TOK_EQ - /* speacial chars */ + /* special chars */ TOK_EQ, TOK_AND, TOK_OR,