Merge pull request #1380 from DjebbZ/master

Small typo in comment
This commit is contained in:
brad dunbar
2012-06-06 06:48:24 -07:00

View File

@@ -66,7 +66,7 @@
// A module that can be mixed in to *any object* in order to provide it with
// custom events. You may bind with `on` or remove with `off` callback functions
// to an event; trigger`-ing an event fires all callbacks in succession.
// to an event; `trigger`-ing an event fires all callbacks in succession.
//
// var object = {};
// _.extend(object, Backbone.Events);