docs: fix simple typo, preifx -> prefix

There is a small typo in lib/sql-expression.c.

Should read `prefix` rather than `preifx`.
This commit is contained in:
Tim Gates 2020-12-04 17:44:59 +11:00
parent 1c231d9292
commit a48dfaf4be
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05

View File

@ -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)