Skip to content

Commit 148ffde

Browse files
committed
Last minute README typo fixes
1 parent 1f976f7 commit 148ffde

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ _AMD_
230230
define('example', [], function() {
231231
return function(name) {
232232
return 'Hello ' + name;
233-
}
233+
};
234234
});
235235
```
236236

@@ -294,7 +294,7 @@ define("backbone", ["underscore","jquery"], (function (global) {
294294
_Standard_
295295

296296
```javascript
297-
var backbone=window.Backbone;
297+
var backbone = window.Backbone;
298298
```
299299

300300
---
@@ -358,7 +358,7 @@ _Standard_
358358

359359
##Options
360360

361-
The amdclean `clean()` method accepts a string or an object. Below is an example objects with all of the available configuration options:
361+
The amdclean `clean()` method accepts a string or an object. Below is an example object with all of the available configuration options:
362362

363363
```javascript
364364
amdclean.clean({
@@ -441,8 +441,8 @@ __What if I don't want all define() and require() method calls to be removed?__
441441
```javascript
442442
var amdclean = require('amdclean');
443443
amdclean.clean({
444-
'code': 'define("randomExample", function() { console.log("I am a random example"); });',
445-
'ignoreModules': ['randomExample']
444+
'code': 'define("randomExample", function() { console.log("I am a random example"); });',
445+
'ignoreModules': ['randomExample']
446446
});
447447
```
448448

0 commit comments

Comments
 (0)