From bfa6a27818a474c0bf96122a1484d46dd9257484 Mon Sep 17 00:00:00 2001 From: Matthew Hartstonge Date: Tue, 12 Nov 2024 01:25:57 +1300 Subject: [PATCH] docs(addon/components/paper-grid-list): fixes mislabelled param types. --- addon/components/paper-grid-list.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addon/components/paper-grid-list.js b/addon/components/paper-grid-list.js index 8820fa637..52751a9f7 100644 --- a/addon/components/paper-grid-list.js +++ b/addon/components/paper-grid-list.js @@ -57,7 +57,7 @@ export default class PaperGridList extends Component { @tracked children; /** * Set of callbacks to notify children when they need to update their position. - * @type {Set} + * @type {Set} */ @tracked childrenNotifyUpdate; /** @@ -115,7 +115,7 @@ export default class PaperGridList extends Component { /** * Registers a child tile component * @param {PaperGridTile} tile - The tile component to register - * @param {callback} notifyUpdate - A callback to notify children on when they should update. + * @param {Function} notifyUpdate - A callback to notify children on when they should update. */ @action registerChild(tile, notifyUpdate) { this.children.add(tile); @@ -126,7 +126,7 @@ export default class PaperGridList extends Component { /** * Unregisters a child tile component * @param {PaperGridTile} tile - The tile component to unregister - * @param {callback} notifyUpdate - The notify callback to remove. + * @param {Function} notifyUpdate - The notify callback to remove. */ @action unregisterChild(tile, notifyUpdate) { this.children.delete(tile);