binary-tree-typed 2.2.8 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1485,7 +1485,6 @@ var _BinaryTree = class _BinaryTree extends IterableEntryBase {
1485
1485
  * @remarks Time O(N * M), where N is the number of items to set and M is the size of the tree at insertion (due to O(M) `set` operation). Space O(M) (from `set`) + O(N) (for the `inserted` array).
1486
1486
  *
1487
1487
  * @param keysNodesEntriesOrRaws - An iterable of items to set.
1488
- * @param [values] - An optional parallel iterable of values.
1489
1488
  * @returns An array of booleans indicating the success of each individual `set` operation.
1490
1489
  */
1491
1490
  addMany(keysNodesEntriesOrRaws) {