diff options
author | Mark Summerfield <list@qtrac.plus.com> | 2008-02-08 13:24:20 (GMT) |
---|---|---|
committer | Mark Summerfield <list@qtrac.plus.com> | 2008-02-08 13:24:20 (GMT) |
commit | 8eed44922a2516a0463071f35dc15494165e00a1 (patch) | |
tree | 203872494ad142dc0f22efcf24fb2a3fb0386cea | |
parent | 66cb7d4bd8a832ab7f645ab3af23a8917c9d273d (diff) | |
download | cpython-8eed44922a2516a0463071f35dc15494165e00a1.zip cpython-8eed44922a2516a0463071f35dc15494165e00a1.tar.gz cpython-8eed44922a2516a0463071f35dc15494165e00a1.tar.bz2 |
Tiny grammatical fix.
-rw-r--r-- | Doc/library/datatypes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/datatypes.rst b/Doc/library/datatypes.rst index 558c201..496fd41 100644 --- a/Doc/library/datatypes.rst +++ b/Doc/library/datatypes.rst @@ -11,8 +11,8 @@ queues, and sets. Python also provides some built-in data types, in particular, :class:`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and -:class:`tuple`. The :class:`str` class can be used to strings, including -Unicode strings, and the :class:`bytes` class to handle binary data. +:class:`tuple`. The :class:`str` class is used to hold +Unicode strings, and the :class:`bytes` class is used to hold binary data. The following modules are documented in this chapter: |