Fix some examples and regenerate docs, should fix: #4455 (#4639)

This commit is contained in:
Justin Ma
2022-02-25 21:14:15 +08:00
committed by GitHub
parent 2126bef052
commit e6570b41ca
7 changed files with 25 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ Filter out all records where 'World' is null (Returns the table)
> echo [["Hello" "World"]; [$nothing 3]]| compact World
```
Filter out all instances of nothing from a list (Returns [1,2]
Filter out all instances of nothing from a list (Returns [1,2])
```shell
> echo [1, $nothing, 2] | compact
```