aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 e0aa05c..4476bfd 100644
--- a/crates/sloth_vm/src/sloth_std/misc.rs
+++ b/crates/sloth_vm/src/sloth_std/misc.rs
@@ -29,8 +29,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 docs: \n\targs: name (str)\n\tdesc: Returns documentaiton on a \
+ function with name <str>\n\tExample: `var doc = docs('wait'); # Returns the \
documentation of the 'wait' function to doc`",
),
};