diff --git a/Headers/Foundation/NSPropertyList.h b/Headers/Foundation/NSPropertyList.h
index 73d1e0f2d..07665a507 100644
--- a/Headers/Foundation/NSPropertyList.h
+++ b/Headers/Foundation/NSPropertyList.h
@@ -117,12 +117,16 @@ typedef NSUInteger NSPropertyListFormat;
*
* [NSData]
*
- * An array is represented as a series of pairs of hexadecimal characters
- * (each pair representing a byte of data) enclosed in angle brackets.
- * Spaces are ignored).
+ * A data object is represented as a series of pairs of hexadecimal
+ * characters (each pair representing a byte of data) enclosed in angle
+ * brackets. (Spaces are ignored).
*
* < 54637374 696D67 >
*
+ * Base64 can be used since Base 1.24.9:
+ *
+ * <[VGNzdGltZw==]>
+ *
* In XML format, a data object is an element whose name is
* data
and whose content is a stream of base64 encoded bytes.
*
@@ -160,13 +164,13 @@ typedef NSUInteger NSPropertyListFormat;
* }
*
* In XML format, a dictionary is an element whose name is
- * dictionary
and whose content consists of pairs of
- * strings and other property list objects.
+ * dict
and whose content consists of pairs of
+ * string key
and other property list objects.
*
- * <dictionary>
- * <string>key1</string>
+ * <dict>
+ * <key>key1</key>
* <string>value1</string>
- * </dictionary>
+ * </dict>
*
*
* [NSNumber]