From 0361a0696231e1e9a62635814018edf30882901f Mon Sep 17 00:00:00 2001 From: Anton Date: Thu, 8 Aug 2024 09:34:01 +0500 Subject: [PATCH] text: fix examples in the docs --- docs/text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/text.md b/docs/text.md index b189faef..f59a8e5f 100644 --- a/docs/text.md +++ b/docs/text.md @@ -234,7 +234,7 @@ select text_split('one|two|three', '|', 2); select text_split('one|two|three', '|', -1); -- three -text_split('one|two|three', ';', 2); +select text_split('one|two|three', ';', 2); -- (empty string) ``` @@ -554,7 +554,7 @@ SQLite command-line interface: ``` sqlite> .load ./text -sqlite> select reverse('hello'); +sqlite> select text_reverse('hello'); ``` See [How to install an extension](install.md) for usage with IDE, Python, etc.