From 49645de27c8ef9732a42da245d6b1418589b2780 Mon Sep 17 00:00:00 2001 From: TrisMcC Date: Thu, 18 Aug 2011 14:21:52 -0300 Subject: [PATCH] Fixed misspelled word in comments for _ensureElement. --- backbone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone.js b/backbone.js index b2e49322..3f3671bc 100644 --- a/backbone.js +++ b/backbone.js @@ -984,7 +984,7 @@ // Ensure that the View has a DOM element to render into. // If `this.el` is a string, pass it through `$()`, take the first // matching element, and re-assign it to `el`. Otherwise, create - // an element from the `id`, `className` and `tagName` proeprties. + // an element from the `id`, `className` and `tagName` properties. _ensureElement : function() { if (!this.el) { var attrs = this.attributes || {};