Skip to content

Commit

Permalink
text: fix examples in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nalgeon committed Aug 8, 2024
1 parent 2e7e5ff commit 0361a06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/text.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 0361a06

Please sign in to comment.