Skip to content

Commit

Permalink
Merge pull request addyosmani#28 from andreymatveev/patch-1
Browse files Browse the repository at this point in the history
Fixed missed single quote
  • Loading branch information
addyosmani committed Dec 27, 2011
2 parents a525634 + 2e753a2 commit 966ee1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -1448,7 +1448,7 @@ With some other structural JavaScript frameworks, my recommendation would normal
You'll notice that I mentioned the word 'specific' in the first bullet point. The RequireJS optimizer only concatenates module scripts that have been specified in arrays of string literals passed to top-level (i.e non-local) require and define calls. As clarified by the [optimizer docs](http://requirejs.org/docs/optimization.html) this means that Backbone modules defined like this:
```javascript
define(['jquery','backbone','underscore', collections/sample','views/test'],
define(['jquery','backbone','underscore', 'collections/sample','views/test'],
function($,Backbone, _, Sample, Test){
//...
});
Expand Down

0 comments on commit 966ee1d

Please sign in to comment.