@@ -56,7 +56,7 @@ The **important** parts are:
5656
5757# Long Version
5858
59- IE has an issues with element tag names which are not standard HTML tag names. These fall into two
59+ IE has issues with element tag names which are not standard HTML tag names. These fall into two
6060categories, and each category has its own fix.
6161
6262 * If the tag name starts with `my:` prefix than it is considered an XML namespace and must
@@ -65,7 +65,7 @@ categories, and each category has its own fix.
6565 * If the tag has no `:` but it is not a standard HTML tag, then it must be pre-created using
6666 `document.createElement('my-tag')`
6767
68- * If you have are planning on styling the custom tag with CSS selectors, then it must be
68+ * If you are planning on styling the custom tag with CSS selectors, then it must be
6969 pre-created using `document.createElement('my-tag')` regardless of XML namespace.
7070
7171
@@ -88,7 +88,7 @@ result):
8888 </html>
8989</pre>
9090
91- It should pares into the following DOM:
91+ It should parse into the following DOM:
9292
9393<pre>
9494#document
@@ -122,12 +122,12 @@ In IE, the behavior is that the `BODY` element has three children:
122122
123123 3. A corrupt self closing `/mytag`. This is corrupt since element names are not allowed to have
124124 the `/` character. Furthermore this closing element should not be part of the DOM since it is
125- only used to delimitate the structure of the DOM.
125+ only used to delineate the structure of the DOM.
126126
127127
128128## CSS Styling of Custom Tag Names
129129
130- The to make CSS selector work with custom elements the custom element name must be shived with the
130+ To make CSS selectors work with custom elements, the custom element name must be pre-created with
131131`document.createElement('my-tag')` regardless of XML namespace.
132132
133133<pre>
0 commit comments