Skip to content

Commit 01cdc18

Browse files
committed
lint
1 parent f4e2ca1 commit 01cdc18

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/util/AppendOnlyStackedSet.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
*/
1111
class AppendOnlyStackedSet {
1212
/**
13-
* @param {Array<Set<T>>} sets an optional array of sets
13+
* @param {Set<T>[]} sets an optional array of sets
1414
*/
1515
constructor(sets = []) {
16-
/** @type {Array<Set<T>>} */
16+
/** @type {Set<T>[]} */
1717
this._sets = sets;
18-
/** @type {Set<T>|undefined} */
18+
/** @type {Set<T> | undefined} */
1919
this._current = undefined;
2020
}
2121

0 commit comments

Comments
 (0)