From 96304bda3008db17c2dab589c6415f25eb7aba06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Nam=20Kh=C3=A1nh?= <55955273+khanhkhanhlele@users.noreply.github.com> Date: Wed, 5 Nov 2025 17:56:44 +0700 Subject: [PATCH] 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 --- .../com/thealgorithms/devutils/nodes/SimpleTreeNode.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/thealgorithms/devutils/nodes/SimpleTreeNode.java b/src/main/java/com/thealgorithms/devutils/nodes/SimpleTreeNode.java index 215f01a6e..eefffacee 100644 --- a/src/main/java/com/thealgorithms/devutils/nodes/SimpleTreeNode.java +++ b/src/main/java/com/thealgorithms/devutils/nodes/SimpleTreeNode.java @@ -11,16 +11,16 @@ package com.thealgorithms.devutils.nodes; public class SimpleTreeNode extends TreeNode { /** - * Refrence to the child Node on the left. + * Reference to the child Node on the left. */ private SimpleTreeNode leftNode; /** - * Refrence to the child Node on the right. + * Reference to the child Node on the right. */ private SimpleTreeNode rightNode; /** - * Empty contructor. + * Empty constructor. */ public SimpleTreeNode() { super();