diff --git a/packages/htmlbars-compiler/lib/compiler/hydration.js b/packages/htmlbars-compiler/lib/compiler/hydration.js
index 3b5104c9..160325b6 100644
--- a/packages/htmlbars-compiler/lib/compiler/hydration.js
+++ b/packages/htmlbars-compiler/lib/compiler/hydration.js
@@ -164,7 +164,7 @@ prototype.pushMustacheInNode = function(name, args, hashArgs, optionPairs, eleme
prototype.shareParent = function(i) {
var parentNodesName = "parent" + this.parentCount++;
- this.fragmentProcessing.push('var '+parentNodesName+' = '+this.getParent()+'.childNodes['+i+']');
+ this.fragmentProcessing.push('var '+parentNodesName+' = '+this.getParent()+'.childNodes['+i+'];');
this.parents.push(parentNodesName);
};