diff --git a/src/main/java/com/samskivert/mustache/Mustache.java b/src/main/java/com/samskivert/mustache/Mustache.java
index f8788e7..8fb47c1 100644
--- a/src/main/java/com/samskivert/mustache/Mustache.java
+++ b/src/main/java/com/samskivert/mustache/Mustache.java
@@ -108,9 +108,9 @@ public class Mustache
*
* - In the case of a Java object being used as a context, if no field or method can be
* found for a variable, an exception will be raised.
- * - In the case of a {@link Map} being used as a context, all possible accessors are
- * assumed to exist (but potentially return null), and no exception will ever be
- * raised.
+ * - In the case of a {@link Map} being used as a context, if the map does not contain
+ * a mapping for a variable, an exception will be raised. If the map contains a mapping
+ * which maps to {@code null}, then {@code nullValue} is used.
*
*/
public Compiler nullValue (String nullValue) {
return new Compiler(this.standardsMode, nullValue, false,