This is an automated email from the ASF dual-hosted git repository.
pottlinger pushed a commit to branch feature/RAT-369
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
The following commit(s) were added to refs/heads/feature/RAT-369 by this push:
new a0e9fa0d RAT-369: Fix rename in module as well
a0e9fa0d is described below
commit a0e9fa0d1f20883bcfbb9663d6be8f396ec15ed1
Author: P. Ottlinger <[email protected]>
AuthorDate: Fri Apr 26 15:22:10 2024 +0200
RAT-369: Fix rename in module as well
---
apache-rat-tools/src/main/java/org/apache/rat/Documentation.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apache-rat-tools/src/main/java/org/apache/rat/Documentation.java
b/apache-rat-tools/src/main/java/org/apache/rat/Documentation.java
index 320289a9..8dc5f36b 100644
--- a/apache-rat-tools/src/main/java/org/apache/rat/Documentation.java
+++ b/apache-rat-tools/src/main/java/org/apache/rat/Documentation.java
@@ -103,7 +103,7 @@ public class Documentation {
writeIndent(indent, writer);
switch (d.getType()) {
case PARAMETER:
- case BULID_PARAMETER:
+ case BUILD_PARAMETER:
writer.write(String.format("'%s' %s (Datatype: %s%s)%n",
d.getCommonName(), d.getDescription(),
d.isCollection() ? "Collection of " : "",
d.getChildType().getSimpleName()));
break;