Skip to content

Commit 96304bd

Browse files
author
Lê Nam Khánh
authored
chore: fix typos in src/main/java/com/thealgorithms/devutils/nodes/SimpleTreeNode.java (#7032)
Fix typos in src/main/java/com/thealgorithms/devutils/nodes/SimpleTreeNode.java
1 parent 8ae5747 commit 96304bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/thealgorithms/devutils/nodes/SimpleTreeNode.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
public class SimpleTreeNode<E> extends TreeNode<E> {
1212

1313
/**
14-
* Refrence to the child Node on the left.
14+
* Reference to the child Node on the left.
1515
*/
1616
private SimpleTreeNode<E> leftNode;
1717
/**
18-
* Refrence to the child Node on the right.
18+
* Reference to the child Node on the right.
1919
*/
2020
private SimpleTreeNode<E> rightNode;
2121

2222
/**
23-
* Empty contructor.
23+
* Empty constructor.
2424
*/
2525
public SimpleTreeNode() {
2626
super();

0 commit comments

Comments
 (0)