From 531191751267fef72c468e83a468daf269d13f37 Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Mon, 8 Jul 2019 17:30:47 -0700 Subject: [PATCH] Updated comment. --- lib/mixins/property-effects.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/mixins/property-effects.js b/lib/mixins/property-effects.js index 19c8cec33f..606d5c107c 100644 --- a/lib/mixins/property-effects.js +++ b/lib/mixins/property-effects.js @@ -2705,10 +2705,11 @@ export const PropertyEffects = dedupingMixin(superClass => { // parent. Note, `parent` is the `templateInfo` instance for this // template's parent (containing) template, which was set up in // `applyTemplateContent`. While a given template's `parent` is set - // apriori, it is only added to the parent list at the point that it - // is being bound, since a template may or may not ever be stamped, - // and may be stamped more than once (in which case instances of the - // template info will be in the tree under its parent more than once). + // apriori, it is only added to the parent's child list at the point + // that it is being bound, since a template may or may not ever be + // stamped, and may be stamped more than once (in which case instances + // of the template info will be in the tree under its parent more than + // once). const parent = templateInfo.parent || this.__templateInfo; const previous = parent.lastChild; parent.lastChild = templateInfo;