From 9e206e1fd56672f092ed6018f5448ef65672eb98 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Tue, 19 Mar 2013 18:23:14 +0800 Subject: [PATCH] Fix comment about invalid event. --- backbone.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backbone.js b/backbone.js index 7c8be2c2..d94009d0 100644 --- a/backbone.js +++ b/backbone.js @@ -544,8 +544,7 @@ }, // Run validation against the next complete set of model attributes, - // returning `true` if all is well. Otherwise, fire an - // `"invalid"` event and call the invalid callback, if specified. + // returning `true` if all is well. Otherwise, fire an `"invalid"` event. _validate: function(attrs, options) { if (!options.validate || !this.validate) return true; attrs = _.extend({}, this.attributes, attrs);