fixed javadoc errors
diff --git a/apache-rat-core/src/main/java/org/apache/rat/config/parameters/Description.java b/apache-rat-core/src/main/java/org/apache/rat/config/parameters/Description.java
index 33f83e5..bbf01f3 100644
--- a/apache-rat-core/src/main/java/org/apache/rat/config/parameters/Description.java
+++ b/apache-rat-core/src/main/java/org/apache/rat/config/parameters/Description.java
@@ -217,10 +217,10 @@
     }
 
     /**
-     * Get all the children of a specific type
+     * Get a filtered collection of the child descriptions.
      * 
-     * @param type the type to return
-     * @return the collection of children of the specified type.
+     * @param filter the filter to apply to the child descriptions.
+     * @return the collection of children that matche the filter..
      */
     public Collection<Description> filterChildren(Predicate<Description> filter) {
         return children.values().stream().filter(filter).collect(Collectors.toList());
diff --git a/apache-rat-core/src/main/java/org/apache/rat/configuration/builders/SpdxBuilder.java b/apache-rat-core/src/main/java/org/apache/rat/configuration/builders/SpdxBuilder.java
index 6945f46..c0ad372 100644
--- a/apache-rat-core/src/main/java/org/apache/rat/configuration/builders/SpdxBuilder.java
+++ b/apache-rat-core/src/main/java/org/apache/rat/configuration/builders/SpdxBuilder.java
@@ -36,7 +36,7 @@
      * 
      * @param name The text that follows the colon ':' in the SPDX tag.
      * @return this builder.
-     * @link https://spdx.org/licenses/
+     * @see <a href="https://spdx.org/licenses/">SPDX license list</a>
      */
     public SpdxBuilder setName(String name) {
         Objects.requireNonNull(name, "SPDX name must not be null");