diff --git a/src/main/java/org/apache/commons/collections4/map/PredicatedSortedMap.java b/src/main/java/org/apache/commons/collections4/map/PredicatedSortedMap.java
index e9735b1cf..1f12b3d37 100644
--- a/src/main/java/org/apache/commons/collections4/map/PredicatedSortedMap.java
+++ b/src/main/java/org/apache/commons/collections4/map/PredicatedSortedMap.java
@@ -22,7 +22,7 @@ import java.util.SortedMap;
import org.apache.commons.collections4.Predicate;
/**
- * Decorates another SortedMap
to validate that additions
+ * Decorates another SortedMap
to validate that additions
* match a specified predicate.
*
* This map exists to provide validation for the decorated map. @@ -30,7 +30,12 @@ import org.apache.commons.collections4.Predicate; * If an object cannot be added to the map, an IllegalArgumentException is thrown. *
* One usage would be to ensure that no null keys are added to the map. - *
SortedMap map = PredicatedSortedSet.decorate(new TreeMap(), NotNullPredicate.INSTANCE, null);+ *
+ * SortedMap map = + * PredicatedSortedMap.predicatedSortedMap(new TreeMap(), + * NotNullPredicate.notNullPredicate(), + * null); + **
* Note that PredicatedSortedMap is not synchronized and is not thread-safe. * If you wish to use this map from multiple threads concurrently, you must use