aboutsummaryrefslogtreecommitdiff
path: root/crates/sloth_vm/src
diff options
context:
space:
mode:
authorNic Gaffney <gaffney_nic@protonmail.com>2023-04-27 18:33:29 -0500
committerGitHub <noreply@github.com>2023-04-27 18:33:29 -0500
commit33e941220effaad90f6460b7b163d0e870d8a8cb (patch)
tree3d084f3f41a60e505854749ffcda70e18d49dac3 /crates/sloth_vm/src
parent8a0eee45254f86f8fe50acda1a2a187c877a4701 (diff)
downloadsloth-33e941220effaad90f6460b7b163d0e870d8a8cb.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.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/sloth_vm/src/sloth_std/term.rs b/crates/sloth_vm/src/sloth_std/term.rs
index 16fd86a..c9b85da 100644
--- a/crates/sloth_vm/src/sloth_std/term.rs
+++ b/crates/sloth_vm/src/sloth_std/term.rs
@@ -12,7 +12,7 @@ pub const TERM_CLEAR: NativeFunction = NativeFunction {
arity: 0,
returns_value: false,
doc: Some(
- "NativeFunction term_clear: \n\tdesc: Clears the terminal\n\tExample: `term_clear(); # \
+ "NativeFunction term$clear: \n\tdesc: Clears the terminal\n\tExample: `term$clear(); # \
Clears the terminal`",
),
};