Skip to content

Commit cb2c24f

Browse files
authored
Docs
1 parent f5f8664 commit cb2c24f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ var_dump(0.1 + 0.2); // float(0.3)
1717
var_dump(0.1 + 0.2 - 0.3); // float(5.5511151231258E-17)
1818
```
1919

20-
Handling them as string is a workaround, but as value object you can more easily encapsulate some of the logic.
20+
Handling them as strings is a workaround, but as value object you can more easily encapsulate some of the logic.
2121

2222
### Alternatives
2323
Solutions like [php-decimal](https://php-decimal.github.io/#introduction) require a custom PHP extension (would make it faster, but also more difficult for some
2424
servers to be available).
25-
Monetary values themselves one could be handled also with [brick/money](https://github.com/brick/money) or [moneyphp/money](https://github.com/moneyphp/money).
25+
Monetary values themselves could be handled also with [brick/money](https://github.com/brick/money) or [moneyphp/money](https://github.com/moneyphp/money).
2626

2727
For details see the [wiki](https://github.com/php-collective/decimal-object/wiki).
2828

29-
Note: If you are looking for pre 8.1 versions, check out legacy library (https://github.com/spryker/decimal-object).
29+
Note: If you are looking for pre PHP 8.1 versions, check out the [legacy library](https://github.com/spryker/decimal-object).
3030

3131
## Features
3232

0 commit comments

Comments
 (0)