Merged revisions 69846 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69846 | mark.dickinson | 2009-02-21 20:27:01 +0000 (Sat, 21 Feb 2009) | 2 lines

  Issue #5341: Fix a variety of spelling errors.
........
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 7d0ed06..a4d3964 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -1872,7 +1872,7 @@
 
 /* Iterate over seq.  Result depends on the operation:
    PY_ITERSEARCH_COUNT:	 -1 if error, else # of times obj appears in seq.
-   PY_ITERSEARCH_INDEX:	 0-based index of first occurence of obj in seq;
+   PY_ITERSEARCH_INDEX:	 0-based index of first occurrence of obj in seq;
 	set ValueError and return -1 if none found; also return -1 on error.
    Py_ITERSEARCH_CONTAINS:  return 1 if obj in seq, else 0; -1 on error.
 */