fix various doc typos #3320

This commit is contained in:
Benjamin Peterson 2008-07-12 20:16:19 +00:00
parent 9c87a40786
commit 90f36730e2
20 changed files with 35 additions and 35 deletions

View file

@ -286,7 +286,7 @@ sometimes there is a need for alternative implementations with different
performance trade-offs.
The :mod:`array` module provides an :class:`array()` object that is like a list
that stores only homogenous data and stores it more compactly. The following
that stores only homogeneous data and stores it more compactly. The following
example shows an array of numbers stored as two byte unsigned binary numbers
(typecode ``"H"``) rather than the usual 16 bytes per entry for regular lists of
python int objects::