1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2025-06-13 12:54:17 +00:00

Fix incorrect package name in readme

This commit is contained in:
Thomas Treffry 2016-03-26 09:16:26 -07:00
parent 7d9b530aa2
commit cb30048245

View File

@ -58,7 +58,7 @@ $ npm install decimal.js
To load with AMD loader libraries such as [requireJS](http://requirejs.org/): To load with AMD loader libraries such as [requireJS](http://requirejs.org/):
```js ```js
require(['decimal'], function(Decimal) { require(['decimal.js'], function(Decimal) {
// Use Decimal here in local scope. No global Decimal. // Use Decimal here in local scope. No global Decimal.
}); });
``` ```