aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authornic-gaffney <gaffney_nic@protonmail.com>2023-04-27 18:34:50 -0500
committernic-gaffney <gaffney_nic@protonmail.com>2023-04-27 18:34:50 -0500
commite49358828d84d4bf2a2ec8ee9447c8f5a00f90bc (patch)
tree36b9428ab30bb558803bb37108c38dac1d625c75 /crates
parent422fe0a9bdc2eac76cc1512a1708ade73e57cf68 (diff)
downloadsloth-e49358828d84d4bf2a2ec8ee9447c8f5a00f90bc.tar.gz
docs fixed
Diffstat (limited to 'crates')
-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`",
),
};