From 89cc5c62f65293e2c1a84dc606af9af7fb4df92b Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Wed, 22 Aug 2018 15:27:30 -0700 Subject: [PATCH] Remove unnecessary @const. --- polymer-element.js | 1 - 1 file changed, 1 deletion(-) diff --git a/polymer-element.js b/polymer-element.js index a79d5293c9..7188e01b73 100644 --- a/polymer-element.js +++ b/polymer-element.js @@ -25,7 +25,6 @@ export { html } from './lib/utils/html-tag.js'; * @summary Custom element base class that provides the core API for Polymer's * key meta-programming features including template stamping, data-binding, * attribute deserialization, and property change observation - * @const */ export const PolymerElement = ElementMixin(HTMLElement);