From 6454074dcd408aedc118f343b6500fe1e513fad7 Mon Sep 17 00:00:00 2001 From: DjebbZ Date: Wed, 6 Jun 2012 15:35:08 +0300 Subject: [PATCH] Small typo in comment : missing "`". --- backbone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone.js b/backbone.js index 78033d41..223b1ae2 100644 --- a/backbone.js +++ b/backbone.js @@ -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);