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

@ -9,3 +9,10 @@ Export custom commands or environment variables from a module.
## Signature
```> export ```
## Examples
Export a definition from a module
```shell
> module utils { export def my-command [] { "hello" } }; use utils my-command; my-command
```