This is an automated email from the ASF dual-hosted git repository.
pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
The following commit(s) were added to refs/heads/master by this push:
new fd1202b1 RAT-98: Fix javadoc
fd1202b1 is described below
commit fd1202b1f859e13b89009287c2fd491ce3969d98
Author: P. Ottlinger <[email protected]>
AuthorDate: Thu Feb 13 17:24:18 2025 +0100
RAT-98: Fix javadoc
---
.../src/main/java/org/apache/rat/document/DocumentName.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/apache-rat-core/src/main/java/org/apache/rat/document/DocumentName.java
b/apache-rat-core/src/main/java/org/apache/rat/document/DocumentName.java
index 5e41156a..dfe6d057 100644
--- a/apache-rat-core/src/main/java/org/apache/rat/document/DocumentName.java
+++ b/apache-rat-core/src/main/java/org/apache/rat/document/DocumentName.java
@@ -40,7 +40,7 @@ import org.apache.commons.lang3.tuple.ImmutablePair;
import org.apache.commons.lang3.tuple.Pair;
/**
- * The name for a document. The {@code DocumentName} is an immutable
structure that handles all the intricacies of file
+ * The name for a document. The {@code DocumentName} is an immutable structure
that handles all the intricacies of file
* naming on various operating systems. DocumentNames have several components:
* <ul>
* <li>{@code root} - where in the file system the name starts (e.g C: on
windows). May be empty but not null.</li>
@@ -94,7 +94,7 @@ public class DocumentName implements Comparable<DocumentName>
{
}
/**
- * Creates a builder from a File. The {@link #baseName} is set to the
file name if it is a directory otherwise
+ * Creates a builder from a File. The {@link #baseName} is set to the file
name if it is a directory otherwise
* it is set to the directory containing the file.
* @param file The file to set defaults from.
* @return the builder.