This is an automated email from the ASF dual-hosted git repository.

benweidig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new f58907a32 TAP5-2827: fix javadoc issues
f58907a32 is described below

commit f58907a32f4f3e4c648e40ff75126f88ff9859ea
Author: Ben Weidig <[email protected]>
AuthorDate: Sat Jun 27 10:22:58 2026 +0200

    TAP5-2827: fix javadoc issues
---
 tapestry-core/src/main/java/org/apache/tapestry5/dom/Node.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/dom/Node.java 
b/tapestry-core/src/main/java/org/apache/tapestry5/dom/Node.java
index 19c20a7b5..01542575e 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/dom/Node.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/dom/Node.java
@@ -304,7 +304,7 @@ public abstract class Node
 
     /**
      * Returns the previous sibling node within the containing element, or 
{@code null}
-     * if {@this} is:
+     * if {@code this} is:
      * <ul>
      * <li>the first child</li>
      * <li>not part of a sibling list (root element, document-preamble node, 
or detached node).
@@ -370,10 +370,10 @@ public abstract class Node
      * <p>
      * If {@code replacement} is currently attached to another parent, it is 
detached first.
      *
-     * @param replacement the node to put in place of this node, must not be 
{@code null} or {@this}
+     * @param replacement the node to put in place of this node, must not be 
{@code null} or {@code this}
      * @return the replacement node, now in position
-     * @throws IllegalArgumentException if {@code replacement} is {@code 
null}, is {@this}, or is an ancestor of {@this}
-     * @throws IllegalStateException    if {@this} is detached (has no parent)
+     * @throws IllegalArgumentException if {@code replacement} is {@code 
null}, is {@code this}, or is an ancestor of {@code this}
+     * @throws IllegalStateException    if {@code this} is detached (has no 
parent)
      * @since 5.10
      */
     public Node replaceWith(Node replacement)

Reply via email to