Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Vandersmith <[email protected]>
  • Loading branch information
paulyoung and rvanasa committed Dec 28, 2022
1 parent bafaab2 commit bc011ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Array.mo
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ module {
/// Runtime: O(1)
///
/// Space: O(1)
public func keys<X>(array : [X]) : I.Iter<Nat> = array.keys()
public func keys<X>(array : [X]) : I.Iter<Nat> = array.keys();

/// Returns the size of `array`.
///
Expand Down

0 comments on commit bc011ec

Please sign in to comment.