Skip to content

Commit

Permalink
style: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dtscalac committed May 9, 2024
1 parent ed86db5 commit ef9f84f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extension type Coin(int value) {
/// Subtracts [other] values from this value and returns a new [Coin].
Coin operator -(Coin other) => Coin(value - other.value);

/// Multiplies this value per [other] values and returns a new [Coin].
/// Multiplies this value by [other] values and returns a new [Coin].
Coin operator *(Coin other) => Coin(value * other.value);

/// Divides this value by [other] value without remainder
Expand Down

0 comments on commit ef9f84f

Please sign in to comment.