chore: equality + doc cleanups

This commit is contained in:
Ben Henning
2025-04-21 21:00:27 +00:00
parent 404c20eeaf
commit c91fed3fdb
3 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ export interface IFocusableNode {
*
* It's expected the actual returned element will not change for the lifetime
* of the node (that is, its properties can change but a new element should
* never be returned.)
* never be returned).
*/
getFocusableElement(): HTMLElement | SVGElement;

View File

@@ -39,7 +39,7 @@ export interface IFocusableTree {
/**
* Returns the IFocusableNode of this tree that should receive active focus
* when the tree itself has focused returned to it.
* when the tree itself has focus returned to it.
*
* There are some very important notes to consider about a tree's focus
* lifecycle when implementing a version of this method that doesn't return