Skip to content

Commit

Permalink
Merge pull request #88 from hlindset/dev
Browse files Browse the repository at this point in the history
Fixed typos
  • Loading branch information
Derick Bailey committed Apr 29, 2012
2 parents c443dd0 + 15b333f commit 8040a3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ An "item:before:render" event will be triggered just before the
view is rendered

```js
MyView = Backbone.Marionette.ItemVIew.extend({...});
MyView = Backbone.Marionette.ItemView.extend({...});

var myView = new MyView();

Expand All @@ -881,7 +881,7 @@ An "item:rendered" event will be triggered just after the view
has been rendered.

```js
MyView = Backbone.Marionette.ItemVIew.extend({...});
MyView = Backbone.Marionette.ItemView.extend({...});

var myView = new MyView();

Expand All @@ -901,7 +901,7 @@ view closing itself. This event fires when the `close` method of
the view is called.

```js
MyView = Backbone.Marionette.ItemVIew.extend({...});
MyView = Backbone.Marionette.ItemView.extend({...});

var myView = new MyView();

Expand All @@ -919,7 +919,7 @@ view closes. This event fires when the `close` method of
the view is called.

```js
MyView = Backbone.Marionette.ItemVIew.extend({...});
MyView = Backbone.Marionette.ItemView.extend({...});

var myView = new MyView();

Expand Down
2 changes: 1 addition & 1 deletion src/backbone.marionette.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ Backbone.Marionette = (function(Backbone, _, $){
// Configure an AppRouter with `appRoutes`.
//
// App routers can only take one `controller` object.
// It is reocmmended that you divide your controller
// It is recommended that you divide your controller
// objects in to smaller peices of related functionality
// and have multiple routers / controllers, instead of
// just one giant router and controller.
Expand Down

0 comments on commit 8040a3c

Please sign in to comment.