[Python-checkins] r46233 - python/trunk/Objects/stringobject.c

andrew.kuchling python-checkins at python.org
Thu May 25 20:11:18 CEST 2006


Author: andrew.kuchling
Date: Thu May 25 20:11:16 2006
New Revision: 46233

Modified:
   python/trunk/Objects/stringobject.c
Log:
Comment typo

Modified: python/trunk/Objects/stringobject.c
==============================================================================
--- python/trunk/Objects/stringobject.c	(original)
+++ python/trunk/Objects/stringobject.c	Thu May 25 20:11:16 2006
@@ -791,7 +791,7 @@
 /* note: fastsearch may access s[n], which isn't a problem when using
    Python's ordinary string types, but may cause problems if you're
    using this code in other contexts.  also, the count mode returns -1
-   if there cannot possible be a match in the target string, and 0 if
+   if there cannot possibly be a match in the target string, and 0 if
    it has actually checked for matches, but didn't find any.  callers
    beware! */
 


More information about the Python-checkins mailing list