[Python-checkins] r42444 - python/trunk/Modules/mmapmodule.c

thomas.wouters python-checkins at python.org
Fri Feb 17 10:59:01 CET 2006


Author: thomas.wouters
Date: Fri Feb 17 10:59:00 2006
New Revision: 42444

Modified:
   python/trunk/Modules/mmapmodule.c
Log:

Fix typo.



Modified: python/trunk/Modules/mmapmodule.c
==============================================================================
--- python/trunk/Modules/mmapmodule.c	(original)
+++ python/trunk/Modules/mmapmodule.c	Fri Feb 17 10:59:00 2006
@@ -1080,7 +1080,7 @@
 
 	m_obj->access = (access_mode)access;
 	/* DWORD is a 4-byte int.  If we're on a box where size_t consumes
-	 * more then 4 bytes, we need to break it apart.  Else (size_t
+	 * more than 4 bytes, we need to break it apart.  Else (size_t
 	 * consumes 4 bytes), C doesn't define what happens if we shift
 	 * right by 32, so we need different code.
 	 */


More information about the Python-checkins mailing list