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
This commit is contained in:
Lê Nam Khánh
2025-11-05 17:56:44 +07:00
committed by GitHub
parent 8ae57476b1
commit 96304bda30

View File

@@ -11,16 +11,16 @@ package com.thealgorithms.devutils.nodes;
public class SimpleTreeNode<E> extends TreeNode<E> {
/**
* Refrence to the child Node on the left.
* Reference to the child Node on the left.
*/
private SimpleTreeNode<E> leftNode;
/**
* Refrence to the child Node on the right.
* Reference to the child Node on the right.
*/
private SimpleTreeNode<E> rightNode;
/**
* Empty contructor.
* Empty constructor.
*/
public SimpleTreeNode() {
super();