correct decendant/decendent/descendent in identifiers, errors, and comments

This commit is contained in:
hippietrail 2024-10-27 12:02:51 +07:00
parent 7ddd8665b7
commit d28b139933
16 changed files with 54 additions and 54 deletions

View file

@ -299,7 +299,7 @@ public class DockingUtils {
}
/**
* Perform some operation on a component and all of its descendents, recursively.
* Perform some operation on a component and all of its descendants, recursively.
*
* This applies the operation to all components in the tree, children first.
*

View file

@ -32,7 +32,7 @@ import ghidra.util.SystemUtilities;
* that this will allow direct thread-safe access to the children without having to worry about
* {@link ConcurrentModificationException}s while iterating the children. Also, the assumption
* is that accessing the children will occur much more frequently than modifying the children.
* This should only be a problem if a direct descendent of GTreeNode creates its children by calling
* This should only be a problem if a direct descendant of GTreeNode creates its children by calling
* addNode many times. But in that case, the tree should be using Lazy or
* SlowLoading nodes which always load into another list first and all the children will be set
* on a node in a single operation.