From b6b43f36c33083040d49c8aa925f5ab9416a9cad Mon Sep 17 00:00:00 2001 From: CSLTech Date: Tue, 28 Mar 2017 19:50:14 -0400 Subject: [PATCH] Fixed tempaltize -> templatize typo --- lib/utils/templatize.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/templatize.html b/lib/utils/templatize.html index ad1008aee3..31257260d1 100644 --- a/lib/utils/templatize.html +++ b/lib/utils/templatize.html @@ -291,7 +291,7 @@ * // Get a template from somewhere, e.g. light DOM * let template = this.querySelector('template'); * // Prepare the template - * let TemplateClass = Polymer.Tempaltize.templatize(template); + * let TemplateClass = Polymer.Templatize.templatize(template); * // Instance the template with an initial data model * let instance = new TemplateClass({myProp: 'initial'}); * // Insert the instance's DOM somewhere, e.g. element's shadow DOM