Skip to content

Commit 23d582c

Browse files
committed
Typo: Added 'is' to "if it not defined"
Added 'is' to the following sentence: "Every Backbone.js view has an "el" property, and if it is not defined, Backbone.js will construct its own, which is an empty div element."
1 parent 9ab2105 commit 23d582c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2011-01-28-what-is-a-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For the purposes of this demonstration, we will be implementing a search box. [A
2727

2828
## The "el" property
2929

30-
The "el" property references the DOM object created in the browser. Every Backbone.js view has an "el" property, and if it not defined, Backbone.js will construct its own, which is an empty div element.
30+
The "el" property references the DOM object created in the browser. Every Backbone.js view has an "el" property, and if it is not defined, Backbone.js will construct its own, which is an empty div element.
3131

3232
Let us set our view's "el" property to div#search_container, effectively making Backbone.View the owner of the DOM element.
3333

0 commit comments

Comments
 (0)