Skip to content

Commit

Permalink
Merge pull request #4477 from thoov/updatingTransitionReadme
Browse files Browse the repository at this point in the history
[BUGFIX] Fix js typo in transition doc
  • Loading branch information
stefanpenner committed Jul 17, 2015
2 parents 1da952c + a5d82bc commit 3db4a0a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions TRANSITION.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Two steps:
```
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var app = new EmberApp();
app.import("file1.js")
app.import("file2.js")
app.import("file1.js");
app.import("file2.js");
module.exports = app.toTree();
```

Expand All @@ -35,12 +35,12 @@ var EmberApp = require('ember-cli/lib/broccoli/ember-app');
module.exports = function(defaults) {
var app = new EmberApp(defaults, {
app.import("file1.js")
app.import("file2.js")
// Any other options
});
app.import("file1.js");
app.import("file2.js");
return app.toTree();
};
```

0 comments on commit 3db4a0a

Please sign in to comment.