Skip to content

Commit

Permalink
Chore: fix a typo happend -> happend
Browse files Browse the repository at this point in the history
  • Loading branch information
mindreframer authored and bobzhang committed Jan 12, 2025
1 parent 0357d05 commit d96f0ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion builtin/linked_hash_map.mbt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fn power_2_above(x : Int, n : Int) -> Int {
}
let next = i << 1
if next < 0 {
// overflow happend
// overflow happened
break i
}
continue next
Expand Down
2 changes: 1 addition & 1 deletion hashmap/hashmap.mbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fn power_2_above(x : Int, n : Int) -> Int {
}
let next = i << 1
if next < 0 {
// overflow happend
// overflow happened
break i
}
continue next
Expand Down

0 comments on commit d96f0ad

Please sign in to comment.