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

ppkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/commons-xml.git

commit bdabbca1f8b912ab043accbfda34d7e927af4bda
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Wed Jun 10 11:00:30 2026 +0200

    Fix malformed paragraph tag in schema factory Javadoc (#18)
    
    The opening paragraph was written as an empty element followed by text,
    which renders as a stray empty paragraph. This change makes it a single
    well-formed paragraph wrapping the text.
    
    Assisted-By: Claude Opus 4.8 (1M context) <[email protected]>
---
 src/main/java/eu/copernik/xml/factory/XmlFactories.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/eu/copernik/xml/factory/XmlFactories.java 
b/src/main/java/eu/copernik/xml/factory/XmlFactories.java
index 2f28cde..74b18ea 100644
--- a/src/main/java/eu/copernik/xml/factory/XmlFactories.java
+++ b/src/main/java/eu/copernik/xml/factory/XmlFactories.java
@@ -222,7 +222,7 @@ public static SAXParserFactory newSAXParserFactory() {
      *   <li>{@code xsi:schemaLocation} / {@code 
xsi:noNamespaceSchemaLocation} hints in instance documents are not resolved 
during validation.</li>
      * </ul>
      *
-     * <p></p>The same guarantees apply to {@link 
javax.xml.validation.Validator} and {@link 
javax.xml.validation.ValidatorHandler} instances produced from the
+     * <p>The same guarantees apply to {@link javax.xml.validation.Validator} 
and {@link javax.xml.validation.ValidatorHandler} instances produced from the
      * resulting {@link javax.xml.validation.Schema}.</p>
      *
      * @return a hardened factory.

Reply via email to