Skip to content

Commit dabaa9c

Browse files
authored
Fix (docs) wording inconsistency in box creation instructions
1 parent abec09b commit dabaa9c

File tree

1 file changed

+3
-3
lines changed
  • crates/cairo-lang-sierra-to-casm/src/invocations

1 file changed

+3
-3
lines changed

crates/cairo-lang-sierra-to-casm/src/invocations/boxing.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub fn build(
2525
}
2626
}
2727

28-
/// Handles instruction for creating a box.
28+
/// Handles instructions for creating a box.
2929
fn build_into_box(
3030
builder: CompiledInvocationBuilder<'_>,
3131
) -> Result<CompiledInvocation, InvocationError> {
@@ -57,7 +57,7 @@ fn build_into_box(
5757
))
5858
}
5959

60-
/// Handles instruction for wrapping a local object of type T into a box.
60+
/// Handles instructions for wrapping a local object of type T into a box.
6161
fn build_local_into_box(
6262
builder: CompiledInvocationBuilder<'_>,
6363
) -> Result<CompiledInvocation, InvocationError> {
@@ -85,7 +85,7 @@ fn build_local_into_box(
8585
))
8686
}
8787

88-
/// Handles instruction for unboxing a box.
88+
/// Handles instructions for unboxing a box.
8989
fn build_unbox(
9090
ty: &ConcreteTypeId,
9191
builder: CompiledInvocationBuilder<'_>,

0 commit comments

Comments
 (0)