docs(proto_view_merger.ts):Change seprate to separate

Closes #4079
This commit is contained in:
brianpchsu 2015-09-08 22:56:11 -07:00 committed by Misko Hevery
parent 20fbbcc72d
commit f7fb5097b9
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ function createRootElementFromFragments(fragments: Node[][]): Element {
for (var i = 0; i < fragments.length; i++) {
var fragment = fragments[i];
if (i >= 1) {
// Note: We need to seprate fragments by a comment so that sibling
// Note: We need to separate fragments by a comment so that sibling
// text nodes don't get merged when we serialize the DomProtoView into a string
// and parse it back again.
DOM.appendChild(rootNode, DOM.createComment('|'));