From cd9f6a22cb62281138c37b3b8d1d6e7ad7a71584 Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Sun, 24 Jan 2016 21:00:41 -0600 Subject: [PATCH] Changed comment. --- tinyexpr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyexpr.h b/tinyexpr.h index 95963e2..5a4def8 100644 --- a/tinyexpr.h +++ b/tinyexpr.h @@ -50,6 +50,7 @@ typedef struct { /* Parses the input expression, evaluates it, and frees it. */ +/* Returns NaN on error. */ double te_interp(const char *expression, int *error); /* Parses the input expression and binds variables. */ @@ -57,7 +58,6 @@ double te_interp(const char *expression, int *error); te_expr *te_compile(const char *expression, const te_variable *lookup, int lookup_len, int *error); /* Evaluates the expression. */ -/* Returns NaN on error. */ double te_eval(const te_expr *n); /* Prints debugging information on the syntax tree. */