From 79820ef760394ce072a84a9801515a97365668b0 Mon Sep 17 00:00:00 2001 From: Spiker985 <7829451+Spiker985@users.noreply.github.com> Date: Thu, 14 Sep 2023 18:50:55 -0400 Subject: [PATCH] Remove @ from example to fix Documentation CI Coffeescript function calls are prefixed with an @, which is the same syntax that jsdoc uses for parsing - which meant that it thought the example was empty. --- packages/tree-view/lib/tree-view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tree-view/lib/tree-view.js b/packages/tree-view/lib/tree-view.js index 3ab1629e4a..f2caf3f736 100644 --- a/packages/tree-view/lib/tree-view.js +++ b/packages/tree-view/lib/tree-view.js @@ -1732,7 +1732,7 @@ * @function selectedPaths * @desc Public: Return an array of paths from all selected items * @example - * @selectedPaths() => ['selected/path/one', 'selected/path/two', 'selected/path/three' ] + * selectedPaths() => [ 'selected/path/one', 'selected/path/two', 'selected/path/three' ] * @returns {array} Selected item paths */ TreeView.prototype.selectedPaths = function() {