Skip to content

Commit

Permalink
fix issue (#6881)
Browse files Browse the repository at this point in the history
Co-authored-by: orizi <104711814+orizi@users.noreply.github.com>
  • Loading branch information
Bilogweb3 and orizi authored Dec 16, 2024
1 parent 693ef0d commit e72db38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corelib/src/dict.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
//! assert!(dict.get(1) == 20);
//!
//! dict.insert(0, 20);
//! assert!(dict.get(0) == 20
//! assert!(dict.get(0) == 20);
//! ```
//!
//! It is also possible to use the [`Felt252DictTrait::entry`] method to retrieve the last entry
Expand Down

0 comments on commit e72db38

Please sign in to comment.