From bf7732695b4e14f2819d79dc32e3c853f2550343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Fournier?= Date: Fri, 17 Jan 2020 15:51:23 +0100 Subject: [PATCH] Fix comment on Node --- pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/Node.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/Node.java b/pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/Node.java index d203ee6b1c..c5a401fa47 100644 --- a/pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/Node.java +++ b/pmd-core/src/main/java/net/sourceforge/pmd/lang/ast/Node.java @@ -31,14 +31,14 @@ import net.sourceforge.pmd.lang.dfa.DataFlowNode; * method return an instance of this sub-interface. For example, * no JSP node should have a Java node as its child. Embedding nodes from * different languages will not be done via these methods, and conforming - * implementations should ensure, that every node returned by these methods + * implementations should ensure that every node returned by these methods * are indeed of the same type. Possibly, a type parameter will be added to * the Node interface in 7.0.0 to enforce it at compile-time. * *

A number of methods are deprecated and will be removed in 7.0.0. * Most of them are implementation details that clutter this API and * make implementation more difficult. Some methods prefixed with {@code jjt} - * have a more conventional counterpart (e.g. {@link #getParent()} and + * have a more conventional counterpart (e.g. {@link #jjtGetParent()} and * {@link #getParent()}) that should be preferred. */ public interface Node {