Skip to content

Commit 1f21ab1

Browse files
justinfagnaniaomarks
authored andcommitted
@mixes -> @appliesMixin
1 parent f7e8021 commit 1f21ab1

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

lib/elements/array-selector.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@
394394
* @customElement
395395
* @polymer
396396
* @extends Polymer.Element
397-
* @mixes Polymer.ArraySelectorMixin
397+
* @appliesMixin Polymer.ArraySelectorMixin
398398
* @memberof Polymer
399399
* @summary Custom element that links paths between an input `items` array and
400400
* an output `selected` item or array based on calls to its selection API.

lib/elements/dom-bind.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* binding scope.
4242
*
4343
* @extends HTMLElement
44-
* @mixes Polymer.PropertyEffects
44+
* @appliesMixin Polymer.PropertyEffects
4545
* @memberof Polymer
4646
* @summary Custom element to allow using Polymer's template features (data
4747
* binding, declarative event listeners, etc.) in the main document.

lib/elements/dom-repeat.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
* @polymer
117117
* @memberof Polymer
118118
* @extends Polymer.Element
119-
* @mixes Polymer.MutableData
119+
* @appliesMixin Polymer.MutableData
120120
* @summary Custom element for stamping instance of a template bound to
121121
* items in an array.
122122
*/

lib/legacy/legacy-element-mixin.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
*
3333
* @mixinFunction
3434
* @polymer
35-
* @mixes Polymer.ElementMixin
36-
* @mixes Polymer.GestureEventListeners
35+
* @appliesMixin Polymer.ElementMixin
36+
* @appliesMixin Polymer.GestureEventListeners
3737
* @property isAttached {boolean} Set to `true` in this element's
3838
* `connectedCallback` and `false` in `disconnectedCallback`
3939
* @memberof Polymer

lib/mixins/element-mixin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
*
104104
* @mixinFunction
105105
* @polymer
106-
* @mixes Polymer.PropertyEffects
106+
* @appliesMixin Polymer.PropertyEffects
107107
* @memberof Polymer
108108
* @property rootPath {string} Set to the value of `Polymer.rootPath`,
109109
* which defaults to the main document path

lib/mixins/property-effects.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,8 +1047,8 @@
10471047
*
10481048
* @mixinFunction
10491049
* @polymer
1050-
* @mixes Polymer.TemplateStamp
1051-
* @mixes Polymer.PropertyAccessors
1050+
* @appliesMixin Polymer.TemplateStamp
1051+
* @appliesMixin Polymer.PropertyAccessors
10521052
* @memberof Polymer
10531053
* @summary Element class mixin that provides meta-programming for Polymer's
10541054
* template binding and data observation system.

polymer-element.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @constructor
2424
* @implements {Polymer_ElementMixin}
2525
* @extends HTMLElement
26-
* @mixes Polymer.ElementMixin
26+
* @appliesMixin Polymer.ElementMixin
2727
* @summary Custom element base class that provides the core API for Polymer's
2828
* key meta-programming features including template stamping, data-binding,
2929
* attribute deserialization, and property change observation

0 commit comments

Comments
 (0)