diff options
| author | Nic Gaffney <gaffney_nic@protonmail.com> | 2023-04-27 18:19:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-27 18:19:05 -0500 |
| commit | 1cc0b13f3915a281aea109050b844f6cb38db71f (patch) | |
| tree | 43497b60242c23beba152bc01e88695de70626b2 /crates/sloth_vm/src/sloth_std | |
| parent | 2367b44b4e3806ba6ae03c1299577caebeb6f7bd (diff) | |
| download | sloth-1cc0b13f3915a281aea109050b844f6cb38db71f.tar.gz | |
Change "get_doc" to "get$doc"
Diffstat (limited to 'crates/sloth_vm/src/sloth_std')
| -rw-r--r-- | crates/sloth_vm/src/sloth_std/misc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/sloth_vm/src/sloth_std/misc.rs b/crates/sloth_vm/src/sloth_std/misc.rs index 6994657..dc6b8fd 100644 --- a/crates/sloth_vm/src/sloth_std/misc.rs +++ b/crates/sloth_vm/src/sloth_std/misc.rs @@ -36,8 +36,8 @@ pub const DOCS: NativeFunction = NativeFunction { arity: 1, returns_value: true, doc: Some( - "NativeFunction get_doc: \n\targs: name (str)\n\tdesc: Returns documentaiton on a \ - function with name <str>\n\tExample: `var doc = get_doc('wait'); # Returns the \ + "NativeFunction get$doc: \n\targs: name (str)\n\tdesc: Returns documentaiton on a \ + function with name <str>\n\tExample: `var doc = get$doc('wait'); # Returns the \ documentation of the 'wait' function to doc`", ), }; |
