Skip to content

Commit

Permalink
docs: change active_segment type from felt252 to usize
Browse files Browse the repository at this point in the history
  • Loading branch information
Eikix committed Sep 27, 2023
1 parent 0d17758 commit 869c02f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/general/machine.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ classDiagram
}
class Memory{
active_segment: felt252,
active_segment: usize,
items: Felt252Dict~u128~,
bytes_len: Felt252Dict~usize~,
}
class Stack{
+active_segment: felt252,
+active_segment: usize,
+items: Felt252Dict~Nullable~u256~~,
+len: Felt252Dict~usize~
}
Expand Down

0 comments on commit 869c02f

Please sign in to comment.