Skip to content

Commit 3f707ea

Browse files
committed
Remove added space
1 parent b244cea commit 3f707ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

b+tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ class BNodeInternal<K,V> extends BNode<K,V> {
16781678
* - Leaf is only populated if the cursor points to a KVP. If this is the case, levelIndices.length === internalSpine.length + 1
16791679
* and levelIndices[levelIndices.length - 1] is the index of the value.
16801680
*/
1681-
type DiffCursor<K,V> = { height: number, internalSpine: BNode<K,V>[][], levelIndices: number[], leaf: BNode<K,V> | undefined, currentKey: K };
1681+
type DiffCursor<K,V> = { height: number, internalSpine: BNode<K,V>[][], levelIndices: number[], leaf: BNode<K,V> | undefined, currentKey: K };
16821682

16831683
// Optimization: this array of `undefined`s is used instead of a normal
16841684
// array of values in nodes where `undefined` is the only value.

0 commit comments

Comments
 (0)