Skip to content

Commit b8de83d

Browse files
hugovkvstinner
andauthored
Add indefinite article
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 15b02d0 commit b8de83d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/library/plistlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ and XML plist files.
1818

1919
The property list (``.plist``) file format is a simple serialization supporting
2020
basic object types, like dictionaries, lists, numbers and strings. Usually the
21-
top level object is a dictionary or frozen dictionary.
21+
top level object is a dictionary or a frozen dictionary.
2222

2323
To write out and to parse a plist file, use the :func:`dump` and
2424
:func:`load` functions.

Lib/plistlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
The property list (.plist) file format is a simple XML pickle supporting
44
basic object types, like dictionaries, lists, numbers and strings.
5-
Usually the top level object is a dictionary or frozen dictionary.
5+
Usually the top level object is a dictionary or a frozen dictionary.
66
77
To write out a plist file, use the dump(value, file)
88
function. 'value' is the top level object, 'file' is

0 commit comments

Comments
 (0)