Skip to content

Commit

Permalink
Missing semicolon in marionette.application docs
Browse files Browse the repository at this point in the history
I was following the docs and copied this code into my application. My grunt task run jshint and I noticed this error.
  • Loading branch information
ChrisGrant committed Jan 15, 2015
1 parent 027e0b0 commit e77151d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/marionette.application.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ The events that are currently triggered, are:

```js
MyApp.on("before:start", function(options){
options.moreData = "Yo dawg, I heard you like options so I put some options in your options!"
options.moreData = "Yo dawg, I heard you like options so I put some options in your options!";
});

MyApp.on("start", function(options){
Expand Down

0 comments on commit e77151d

Please sign in to comment.