Skip to content

Commit

Permalink
Merged the README
Browse files Browse the repository at this point in the history
  • Loading branch information
gfranko committed Feb 18, 2014
2 parents 97ed47c + 4125397 commit 6adf26e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ There are a few different ways that amdclean can be used including:
```javascript
paths: {

'first': '../modules/firstModule',
'first': '../modules/firstModule',

'second': '../modules/secondModule',
'second': '../modules/secondModule',

'third': '../modules/thirdModule'
'third': '../modules/thirdModule'

}
```
Expand Down Expand Up @@ -301,15 +301,15 @@ _AMD_

```javascript
define('third',{
exampleProp: 'This is an example'
exampleProp: 'This is an example'
});
```

_Standard_

```javascript
var third = {
exampleProp: 'This is an example'
exampleProp: 'This is an example'
};
```

Expand All @@ -323,7 +323,7 @@ _AMD_

```javascript
require([], function() {
var example = true;
var example = true;
});
```

Expand All @@ -341,7 +341,7 @@ _AMD_

```javascript
require(['anotherModule'], function(anotherModule) {
var example = true;
var example = true;
});
```

Expand Down Expand Up @@ -518,4 +518,4 @@ __I replaced Almond.js with AMDClean and my file is bigger. Why Is This?__

## License

Copyright (c) 2014 Greg Franko Licensed under the MIT license.
Copyright (c) 2014 Greg Franko Licensed under the MIT license.

0 comments on commit 6adf26e

Please sign in to comment.