Skip to content

Commit

Permalink
fix(mixed_num): πŸ› address typo in constructor assert message
Browse files Browse the repository at this point in the history
  • Loading branch information
albertms10 committed May 20, 2024
1 parent 3390fd9 commit ec0a4d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/utils/mixed_num.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class MixedNum implements Comparable<MixedNum> {
),
assert(
numerator >= 0,
'The denominator must be greater or equal than zero.',
'The numerator must be greater or equal than zero.',
),
assert(
denominator > 0,
Expand Down

0 comments on commit ec0a4d9

Please sign in to comment.