Add more overlay use usage (#6551)

This commit is contained in:
Kangaxx-0
2022-09-13 00:38:21 -07:00
committed by GitHub
parent d08212409f
commit 8564c5371f
2 changed files with 22 additions and 0 deletions

View File

@ -191,6 +191,13 @@ impl Command for OverlayUse {
description: "Create an overlay from a module",
example: r#"module spam { export def foo [] { "foo" } }
overlay use spam
foo"#,
result: None,
},
Example {
description: "Create an overlay from a module and rename it",
example: r#"module spam { export def foo [] { "foo" } }
overlay use spam as spam_new
foo"#,
result: None,
},