Update XML dict documentation

This commit is contained in:
Mingye Wang 2020-02-17 12:31:42 +08:00 committed by GitHub
parent c2d44f800a
commit f63f44907d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -164,13 +164,13 @@ typedef NSUInteger NSPropertyListFormat;
* } * }
* </example> * </example>
* In XML format, a dictionary is an element whose name is * In XML format, a dictionary is an element whose name is
* <code>dictionary</code> and whose content consists of pairs of * <code>dict</code> and whose content consists of pairs of
* strings and other <em>property list</em> objects. * string <code>key</code> and other <em>property list</em> objects.
* <example> * <example>
* &lt;dictionary&gt; * &lt;dict&gt;
* &lt;string&gt;key1&lt;/string&gt; * &lt;key&gt;key1&lt;/key&gt;
* &lt;string&gt;value1&lt;/string&gt; * &lt;string&gt;value1&lt;/string&gt;
* &lt;/dictionary&gt; * &lt;/dict&gt;
* </example> * </example>
* </desc> * </desc>
* <term>[NSNumber]</term> * <term>[NSNumber]</term>