From c48cef5d5ffa96c60d5e760e02cd0ea63e70a4c6 Mon Sep 17 00:00:00 2001
From: Gary Gregory
Date: Mon, 2 Aug 2021 14:05:15 -0400
Subject: [PATCH] Javadoc tweaks.
---
src/main/java/org/apache/commons/collections4/ListUtils.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/collections4/ListUtils.java b/src/main/java/org/apache/commons/collections4/ListUtils.java
index e8cec452f..dfca88238 100644
--- a/src/main/java/org/apache/commons/collections4/ListUtils.java
+++ b/src/main/java/org/apache/commons/collections4/ListUtils.java
@@ -180,7 +180,7 @@ public class ListUtils {
* Shorthand for {@code list.get(0)}
*
* @param The list type.
- * @param list The list
+ * @param list The list.
* @return the first element of a list.
* @see List#get(int)
* @since 4.5
@@ -195,7 +195,7 @@ public class ListUtils {
* Shorthand for {@code list.get(list.size() - 1)}
*
* @param The list type.
- * @param list The list
+ * @param list The list.
* @return the last element of a list.
* @see List#get(int)
* @since 4.5