mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user