Skip to content

Commit 06e0841

Browse files
authored
Fix (docs): grammatical issues in comments for clarity (#9007)
1 parent 443f98c commit 06e0841

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ fn build_init_circuit_data(
7474
// Skip the constant `1`.
7575
const input_start_offset = VALUE_SIZE;
7676
let input_start = rc96 + input_start_offset;
77-
// This size of all the inputs including the input 1.
77+
// The size of all the inputs including the input 1.
7878
const input_end_offset = (1 + n_inputs) * VALUE_SIZE;
7979
let input_end = rc96 + input_end_offset;
8080
const rc96_usage = rc96_usage;
@@ -142,7 +142,7 @@ fn build_get_descriptor(
142142
// The relocation will point the `call` to the `ret;` instruction that precedes the
143143
// add and mul tables.
144144
call rel 0;
145-
// The relocation table will add const offset to the `1` below, making it point to the
145+
// The relocation table will add a const offset to the `1` below, making it point to the
146146
// add and mul tables (the `1` is to skip the `ret` instruction).
147147
[ap] = [ap - 1] + 1, ap++;
148148
[ap] = (add_offsets.len()), ap++;

0 commit comments

Comments
 (0)