From cb3004824571c441adf0f5141a650778116bd705 Mon Sep 17 00:00:00 2001 From: Thomas Treffry Date: Sat, 26 Mar 2016 09:16:26 -0700 Subject: [PATCH] Fix incorrect package name in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f6f9c3..ad0ec47 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ $ npm install decimal.js To load with AMD loader libraries such as [requireJS](http://requirejs.org/): ```js -require(['decimal'], function(Decimal) { +require(['decimal.js'], function(Decimal) { // Use Decimal here in local scope. No global Decimal. }); ```