Skip to content

Commit a634e36

Browse files
committed
spelling: whether the
Signed-off-by: Josh Soref <[email protected]>
1 parent 42f63a5 commit a634e36

File tree

1 file changed

+1
-1
lines changed
  • packages/database/src/core/util

1 file changed

+1
-1
lines changed

packages/database/src/core/util/Tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export function treeHasChildren<T>(tree: Tree<T>): boolean {
100100
}
101101

102102
/**
103-
* @returns Whethe rthe tree is empty (no value or children).
103+
* @returns Whether the tree is empty (no value or children).
104104
*/
105105
export function treeIsEmpty<T>(tree: Tree<T>): boolean {
106106
return treeGetValue(tree) === undefined && !treeHasChildren(tree);

0 commit comments

Comments
 (0)