aboutsummaryrefslogtreecommitdiff
path: root/crates/sloth_vm/src
diff options
context:
space:
mode:
authorNic Gaffney <gaffney_nic@protonmail.com>2023-04-27 18:33:50 -0500
committerGitHub <noreply@github.com>2023-04-27 18:33:50 -0500
commit422fe0a9bdc2eac76cc1512a1708ade73e57cf68 (patch)
treebe2354a21a0cdb37824444fa9e0e9128be5f52eb /crates/sloth_vm/src
parent33e941220effaad90f6460b7b163d0e870d8a8cb (diff)
downloadsloth-422fe0a9bdc2eac76cc1512a1708ade73e57cf68.tar.gz
Update crates/sloth_vm/src/sloth_std/term.rs
Diffstat (limited to 'crates/sloth_vm/src')
-rw-r--r--crates/sloth_vm/src/sloth_std/term.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/sloth_vm/src/sloth_std/term.rs b/crates/sloth_vm/src/sloth_std/term.rs
index c9b85da..f61321c 100644
--- a/crates/sloth_vm/src/sloth_std/term.rs
+++ b/crates/sloth_vm/src/sloth_std/term.rs
@@ -34,8 +34,8 @@ pub const TERM_SETPOS: NativeFunction = NativeFunction {
arity: 2,
returns_value: false,
doc: Some(
- "NativeFunction term_setpos: \n\targs: x (int), y (int)\n\tdesc: Sets the cursors \
- position to (<x>, <y>)\n\tExample: `term_setpos(5, 17); # Sets the position of the \
+ "NativeFunction term$setpos: \n\targs: x (int), y (int)\n\tdesc: Sets the cursors \
+ position to (<x>, <y>)\n\tExample: `term$setpos(5, 17); # Sets the position of the \
cursor to (5, 17)`",
),
};