summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-08 13:53:41 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-08 13:53:41 (GMT)
commit4c35964b764540988bfb342bffc7c4b1cb674031 (patch)
treeaecd23f6cba96f1110bd90cc9fd774f17d6fa4ce /Modules/arraymodule.c
parentf0564164bab43f078c9f84f334d72ddb0e69110c (diff)
downloadcpython-4c35964b764540988bfb342bffc7c4b1cb674031.zip
cpython-4c35964b764540988bfb342bffc7c4b1cb674031.tar.gz
cpython-4c35964b764540988bfb342bffc7c4b1cb674031.tar.bz2
Corrections for a/an in code comments and documentation
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r--Modules/arraymodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 6af75a4..f73c599 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -2090,7 +2090,7 @@ array__array_reconstructor_impl(PyModuleDef *module, PyTypeObject *arraytype,
* that fits better. This may result in an array with narrower
* or wider elements.
*
- * For example, if a 32-bit machine pickles a L-code array of
+ * For example, if a 32-bit machine pickles an L-code array of
* unsigned longs, then the array will be unpickled by 64-bit
* machine as an I-code array of unsigned ints.
*