From f2984859246f9d395c6571683fd136b87995a895 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 11 Oct 2020 10:12:43 +1100 Subject: [PATCH] docs: fix simple typo, thrid -> third There is a small typo in README.md. Should read `third` rather than `thrid`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad9f45a..84d00fb 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ be evaluated later using `te_eval()`. On failure, `te_compile()` will return 0 and optionally set the passed in `*error` to the location of the parse error. You may also compile expressions without variables by passing `te_compile()`'s second -and thrid arguments as 0. +and third arguments as 0. Give `te_eval()` a `te_expr*` from `te_compile()`. `te_eval()` will evaluate the expression using the current variable values.