diff options
| author | nic-gaffney <gaffney_nic@protonmail.com> | 2023-04-18 09:08:49 -0500 |
|---|---|---|
| committer | nic-gaffney <gaffney_nic@protonmail.com> | 2023-04-18 09:08:49 -0500 |
| commit | b0ffef5124c88d52d81cbd2f8c96c019ce84ad47 (patch) | |
| tree | 2c386ab8d561459723d10f4961cc8a8f6772565e /crates/sloth_vm/src/sloth_std/term.rs | |
| parent | 19fefeb732d559195edb01ebc36170c0cf9a0308 (diff) | |
| download | sloth-b0ffef5124c88d52d81cbd2f8c96c019ce84ad47.tar.gz | |
Need to write tests for it, but hopefully function docs work now
Diffstat (limited to 'crates/sloth_vm/src/sloth_std/term.rs')
| -rw-r--r-- | crates/sloth_vm/src/sloth_std/term.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/sloth_vm/src/sloth_std/term.rs b/crates/sloth_vm/src/sloth_std/term.rs index cffa1e8..41e6708 100644 --- a/crates/sloth_vm/src/sloth_std/term.rs +++ b/crates/sloth_vm/src/sloth_std/term.rs @@ -11,6 +11,7 @@ pub const TERM_CLEAR: NativeFunction = NativeFunction { }, arity: 0, returns_value: false, + doc: None, }; fn term_setpos(_vm: &mut VM, args: &[Primitive]) -> NativeFunctionResult { @@ -29,4 +30,5 @@ pub const TERM_SETPOS: NativeFunction = NativeFunction { function: term_setpos, arity: 2, returns_value: false, + doc: None, }; |
