Skip to content

Commit

Permalink
fix wrong type in method stub
Browse files Browse the repository at this point in the history
  • Loading branch information
FireLemons committed Feb 5, 2022
1 parent 91d9202 commit 1a236f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,10 +284,10 @@ function labelCards(cardData, labels) {
}

// Removes labels found in one list of labels from another
// @param {array} labels The list of labels to remove labels from
// @param {array} labelDifference The list of labels to remove
// @param {object} labels The list of labels to remove labels from as keys of an object
// @param {array} labelDifference The list of labels to remove
// @return {array} If any labels were removed,
// A copy of labels with all the labels in labelDifference removed
// A copy of the keys of labels as an array with all the labels in labelDifference removed
// null otherwise
// @throws {TypeError} for a parameter of the incorrect type
function subtractLabels (labels, labelDifference) {
Expand Down

0 comments on commit 1a236f2

Please sign in to comment.