Skip to content

Commit

Permalink
Fix functions.md doc (#2327)
Browse files Browse the repository at this point in the history
  • Loading branch information
yahsan2 authored May 26, 2024
1 parent 61291ae commit 8d32f1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/reference/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,10 +372,10 @@ The outputs are different for different types of input, see examples.
containsword("word", "word") = true
containsword("word", "Word") = true
containsword("words", "Word") = false
containsword("Hello there!, "hello") = true
containsword("Hello there!, "HeLLo") = true
containsword("Hello there chaps!, "chap") = false
containsword("Hello there chaps!, "chaps") = true
containsword("Hello there!", "hello") = true
containsword("Hello there!", "HeLLo") = true
containsword("Hello there chaps!", "chap") = false
containsword("Hello there chaps!", "chaps") = true
```

- For lists, it returns a list of booleans indicating if the word's exact case insensitive match was found.
Expand Down

0 comments on commit 8d32f1a

Please sign in to comment.