diff --git a/src/java/org/apache/commons/collections/buffer/package.html b/src/java/org/apache/commons/collections/buffer/package.html
index 53f60b556..3717cad2d 100644
--- a/src/java/org/apache/commons/collections/buffer/package.html
+++ b/src/java/org/apache/commons/collections/buffer/package.html
@@ -8,6 +8,10 @@ specific additional functionality.
The following implementations are provided in the package:
+- BinaryHeap - implements both Buffer and PriorityQueue
+
- Bounded - implements a buffer with a fixed size that throws exceptions when full
+
- Circular - implements a buffer with a fixed size that discards oldest when full
+
- Unbounded - implements a buffer that grows in size if necessary
- Synchronized - synchronizes method access for multi-threaded environments
- Unmodifiable - ensures the collection cannot be altered
- Predicated - ensures that only elements that are valid according to a predicate can be added