summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Sloan <tyler.g.sloan@gmail.com>2013-06-18 19:10:32 -0400
committerTyler Sloan <tyler.g.sloan@gmail.com>2013-06-18 19:10:32 -0400
commit32140a8de3371724e6635ec809342241ccd5c429 (patch)
treea24fd68e3b8ef2a20cb14b7e5fc8794864837ff6
parent5bdd7a4e7335b8d9b82c1d70699ebbd9bee7a69c (diff)
downloadbackbonetutorials-32140a8de3371724e6635ec809342241ccd5c429.zip
backbonetutorials-32140a8de3371724e6635ec809342241ccd5c429.tar.gz
backbonetutorials-32140a8de3371724e6635ec809342241ccd5c429.tar.bz2
Tiny typo fix on What is a View page
-rw-r--r--_site/what-is-a-view/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/_site/what-is-a-view/index.html b/_site/what-is-a-view/index.html
index 12203a1..87318cb 100644
--- a/_site/what-is-a-view/index.html
+++ b/_site/what-is-a-view/index.html
@@ -93,7 +93,7 @@
<h2>The "el" property</h2>
-<p>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.</p>
+<p>The "el" property references the DOM object created in the browser. Every Backbone.js view has an "el" property, and if it's not defined, Backbone.js will construct its own, which is an empty div element.</p>
<p>Let us set our view's "el" property to div#search_container, effectively making Backbone.View the owner of the DOM element.</p>