From f2007278bb1f66056db9d5958a8ee453c614e987 Mon Sep 17 00:00:00 2001 From: ericliu <40321036+eric-buaa-cn@users.noreply.github.com> Date: Thu, 27 Aug 2020 14:14:47 +0800 Subject: [PATCH] fix a typo --- runtime/Java/src/org/antlr/v4/runtime/tree/Tree.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/Java/src/org/antlr/v4/runtime/tree/Tree.java b/runtime/Java/src/org/antlr/v4/runtime/tree/Tree.java index 0a1bed64f..48b726b0a 100644 --- a/runtime/Java/src/org/antlr/v4/runtime/tree/Tree.java +++ b/runtime/Java/src/org/antlr/v4/runtime/tree/Tree.java @@ -19,7 +19,7 @@ public interface Tree { Tree getParent(); /** - * This method returns whatever object represents the data at this note. For + * This method returns whatever object represents the data at this node. For * example, for parse trees, the payload can be a {@link Token} representing * a leaf node or a {@link RuleContext} object representing a rule * invocation. For abstract syntax trees (ASTs), this is a {@link Token}