We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae5747 commit 96304bdCopy full SHA for 96304bd
src/main/java/com/thealgorithms/devutils/nodes/SimpleTreeNode.java
@@ -11,16 +11,16 @@
11
public class SimpleTreeNode<E> extends TreeNode<E> {
12
13
/**
14
- * Refrence to the child Node on the left.
+ * Reference to the child Node on the left.
15
*/
16
private SimpleTreeNode<E> leftNode;
17
18
- * Refrence to the child Node on the right.
+ * Reference to the child Node on the right.
19
20
private SimpleTreeNode<E> rightNode;
21
22
23
- * Empty contructor.
+ * Empty constructor.
24
25
public SimpleTreeNode() {
26
super();
0 commit comments