From 785fb356111db26c5a72d755260b9ab35400e76f Mon Sep 17 00:00:00 2001 From: "Dr. David A. Kunz" Date: Mon, 22 Jul 2024 10:23:40 +0200 Subject: [PATCH] database functions: lowercase function names --- guides/databases-sqlite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/databases-sqlite.md b/guides/databases-sqlite.md index a5453bd4d..7aca5328d 100644 --- a/guides/databases-sqlite.md +++ b/guides/databases-sqlite.md @@ -409,7 +409,7 @@ A specified set of standard functions is now supported in a **database-agnostic* * `search(xs,y)` — checks whether `y` is contained in any of `xs`, may be fuzzy * `startswith(x,y)` — checks whether `y` starts with `x` * `endswith(x,y)` — checks whether `y` ends with `x` -* `matchesPattern(x,y)` — checks whether `x` matches regex `y` +* `matchespattern(x,y)` — checks whether `x` matches regex `y` * `substring(x,i,n)` — extracts a substring from `x` starting at `i` with length `n` 1 * `indexof(x,y)` — returns the (zero-based) index of the first occurrence of `y` in `x` * `length(x)` — returns the length of string `x`