From d1c1d28e9da88b871a9e76162e9632a9ee273fd1 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Sun, 13 Apr 2025 18:52:21 -0500 Subject: [PATCH] doc changes --- src/instructions/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/instructions/mod.rs b/src/instructions/mod.rs index dcd08f2..43548fa 100644 --- a/src/instructions/mod.rs +++ b/src/instructions/mod.rs @@ -6,7 +6,7 @@ pub mod macros { /// /// The `in_stack` argument refers to which push stack should this operate on. /// The `out_stack` argument refers to which push stack should the result be pushed to. - /// The `fn_name` argement refers to the name of the function that is to operate + /// The `fn_name` argument refers to the name of the function that is to operate /// on the values popped from `in_stack`. /// The `fn_type` argument refers to the type of `in_stack`. For example, the /// int stack is type: *Vec*. `fn_type` is *i128* in this case. @@ -156,7 +156,7 @@ pub mod macros { }; } - /// Same as `make_instruction!` but has two extra parameters. + /// Same as `make_instruction!` but can work on two stacks. /// /// `aux_stack` is an auxiliary stack to be used as input to internal function. /// `aux_arity` is the amount of the auxiliary stack to use. @@ -196,7 +196,7 @@ pub mod macros { }; } - /// Same as `make_instruction!` but can work on two auxiliary stacks. Is there a way + /// Same as `make_instruction!` but can work on three stacks. Is there a way /// to generalize even this? /// /// `aux_stack` is an auxiliary stack to be used as input to internal function.