From a48dfaf4becc00f48773c74dd23dc578b7854493 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 4 Dec 2020 17:44:59 +1100 Subject: [PATCH] docs: fix simple typo, preifx -> prefix There is a small typo in lib/sql-expression.c. Should read `prefix` rather than `preifx`. --- lib/sql-expression.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sql-expression.c b/lib/sql-expression.c index 0c613e5d..2aa3137b 100644 --- a/lib/sql-expression.c +++ b/lib/sql-expression.c @@ -320,7 +320,7 @@ sql_expr_is_function(const sql_expr_t *p, const char *name) * |--TK_ID * |--TK_ID * - * if prefix or suffix not NULL, return ture only if expr is "preifx.suffix" + * if prefix or suffix not NULL, return ture only if expr is "prefix.suffix" */ gboolean sql_expr_is_dotted_name(const sql_expr_t *p, const char *prefix, const char *suffix)