Skip to content

Commit 98158da

Browse files
authored
Change doc wording adding clarity around .value method (scurker#337)
1 parent 36bbc95 commit 98158da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/02-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ By default, currency resolves to a `string` value.
5858
document.getElementsByTagName("input")[0].value = currency(1234.56).add(6.44); // 1241.00
5959
```
6060

61-
If you need access to the raw numbers, the value is stored as both an `integer` and a `string`, which you can access with `.intValue` or `.value`;
61+
*currency.js* stores values as both an `integer` and a `string`. If you need access to the raw numbers, you can access them with `.intValue` or `.value`;
6262

6363
```js
6464
// Get the internal values

0 commit comments

Comments
 (0)