summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-05-25 18:11:16 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-05-25 18:11:16 (GMT)
commitf344c94c85f5c9028256e1dfd4b837e7aa4171f0 (patch)
tree060a57a454e7176cb5cbe129f0cae22a79a4da96 /Objects
parentb552c4d848c740d6f46ada84f4f6b683305a3b08 (diff)
downloadcpython-f344c94c85f5c9028256e1dfd4b837e7aa4171f0.zip
cpython-f344c94c85f5c9028256e1dfd4b837e7aa4171f0.tar.gz
cpython-f344c94c85f5c9028256e1dfd4b837e7aa4171f0.tar.bz2
Comment typo
Diffstat (limited to 'Objects')
-rw-r--r--Objects/stringobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 95ade51..277d4b3 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -791,7 +791,7 @@ PyString_AsStringAndSize(register PyObject *obj,
/* 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! */