From dabaa9cd896dec87f03b8aaa1f1daf01eb9e5aad Mon Sep 17 00:00:00 2001 From: Simka <0xsimka@gmail.com> Date: Tue, 9 Dec 2025 15:59:12 +0300 Subject: [PATCH] Fix (docs) wording inconsistency in box creation instructions --- crates/cairo-lang-sierra-to-casm/src/invocations/boxing.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/cairo-lang-sierra-to-casm/src/invocations/boxing.rs b/crates/cairo-lang-sierra-to-casm/src/invocations/boxing.rs index f57ba7fe5dc..53e88014211 100644 --- a/crates/cairo-lang-sierra-to-casm/src/invocations/boxing.rs +++ b/crates/cairo-lang-sierra-to-casm/src/invocations/boxing.rs @@ -25,7 +25,7 @@ pub fn build( } } -/// Handles instruction for creating a box. +/// Handles instructions for creating a box. fn build_into_box( builder: CompiledInvocationBuilder<'_>, ) -> Result { @@ -57,7 +57,7 @@ fn build_into_box( )) } -/// Handles instruction for wrapping a local object of type T into a box. +/// Handles instructions for wrapping a local object of type T into a box. fn build_local_into_box( builder: CompiledInvocationBuilder<'_>, ) -> Result { @@ -85,7 +85,7 @@ fn build_local_into_box( )) } -/// Handles instruction for unboxing a box. +/// Handles instructions for unboxing a box. fn build_unbox( ty: &ConcreteTypeId, builder: CompiledInvocationBuilder<'_>,