From ef0fdeae0eeb70aed6ff91b31579fdc06441b9ec Mon Sep 17 00:00:00 2001 From: rexim Date: Mon, 20 Aug 2018 02:06:15 +0700 Subject: [PATCH] TODO(#289) --- src/script/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/parser.c b/src/script/parser.c index 8117ad8c..18cebe31 100644 --- a/src/script/parser.c +++ b/src/script/parser.c @@ -87,7 +87,7 @@ struct ParseResult create_expr_from_str(const char *str, return parse_success(atom_as_expr(create_atom(ATOM_NUMBER, x))); } else if (isalpha(str[*cursor])) { - /* TODO: create_expr_from_str does not support symbols */ + /* TODO(#289): create_expr_from_str does not support symbols */ return parse_failure("Symbols are not supported"); } } -- 2.44.0