diff --git a/WHATSNEW b/WHATSNEW
index 00b65fcd3..5ab9b9c27 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -128,7 +128,11 @@ Other changes:
*
A single resource collection is required.
+Includes all elements except for the first count resources +from a nested resource collection. This can be used in conjunction +with the sort collection, for example, to select +all but the first few oldest, largest, etc. resources from a larger +collection. Since Ant 1.9.5.
+++ ++
++ +Attribute +Description +Required ++ +count +The number of resources to exclude +No, default 1 ++ +cache +Whether to cache results; disabling + may seriously impact performance +No, default true +Parameters specified as nested elements
+A single resource collection is required.
+
Includes all elements except for the last count resources +from a nested resource collection. This can be used in conjunction +with the sort collection, for example, to select +all but the last few oldest, largest, etc. resources from a larger +collection. Since Ant 1.9.5.
++++
++ +Attribute +Description +Required ++ +count +The number of resources to exclude +No, default 1 ++ +cache +Whether to cache results; disabling + may seriously impact performance +No, default true +Parameters specified as nested elements
+A single resource collection is required.
+
Includes the string tokens gathered from a nested
resource collection. Uses the same tokenizers supported by the
diff --git a/src/main/org/apache/tools/ant/types/resources/AllButFirst.java b/src/main/org/apache/tools/ant/types/resources/AllButFirst.java
index d9ea50648..ffa665f83 100644
--- a/src/main/org/apache/tools/ant/types/resources/AllButFirst.java
+++ b/src/main/org/apache/tools/ant/types/resources/AllButFirst.java
@@ -33,7 +33,7 @@ import org.apache.tools.ant.types.Resource;
public class AllButFirst extends SizeLimitCollection {
/**
- * Take the first count
elements.
+ * Take all elements except for the first count
elements.
* @return a Collection of Resources.
*/
protected Collection