aboutsummaryrefslogtreecommitdiff
path: root/crates/sloth_vm
diff options
context:
space:
mode:
Diffstat (limited to 'crates/sloth_vm')
-rw-r--r--crates/sloth_vm/src/sloth_std/misc.rs4
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`",
),
};