summaryrefslogtreecommitdiffhomepage
path: root/amd.html.markdown
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2014-10-17 20:58:45 -0500
committerLevi Bostian <levi.bostian@gmail.com>2014-10-17 20:58:45 -0500
commit780826ac277bdbbc7d6841facbcc8df9f19b22f3 (patch)
treef2585d84c0bd790079fda7c8691e2f1e02adca2d /amd.html.markdown
parent0ec14c6914ae9a0c968b8f2e70e31b43f3aaaf73 (diff)
Fix typos from amd.html PR https://github.com/adambard/learnxinyminutes-docs/pull/803
Diffstat (limited to 'amd.html.markdown')
-rw-r--r--amd.html.markdown8
1 files changed, 6 insertions, 2 deletions
diff --git a/amd.html.markdown b/amd.html.markdown
index 3500fa58..36210d03 100644
--- a/amd.html.markdown
+++ b/amd.html.markdown
@@ -8,7 +8,11 @@ filename: learnamd.js
## Getting Started with AMD
-The **Asynchronous Module Definition** API specifies a mechanism for defining JavaScript modules such that the module and its dependencies can be asynchronously loaded. This is particularly well suited for the browser environment where synchronous loading of modules incurs performance, usability, debugging, and cross-domain access problems.
+The **Asynchronous Module Definition** API specifies a mechanism for defining
+JavaScript modules such that the module and its dependencies can be asynchronously
+loaded. This is particularly well suited for the browser environment where
+synchronous loading of modules incurs performance, usability, debugging, and
+cross-domain access problems.
### Basic concept
```javascript
@@ -55,7 +59,7 @@ require(['loudmouth'], function(loudmouth){
loudmouth();
});
-// To make this tutorial running code, let's implement a very basic
+// To make this tutorial run code, let's implement a very basic
// (non-asynchronous) version of AMD right here on the spot:
function define(name, deps, factory){
// notice how modules without dependencies are handled