diff options
author | Min ho Kim <minho42@gmail.com> | 2019-08-30 20:21:19 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-08-30 20:21:19 (GMT) |
commit | 39d87b54715197ca9dcb6902bb43461c0ed701a2 (patch) | |
tree | 778362acb785069882291e2e39f64fd395d73889 /Objects | |
parent | 15119bc2a7e902ae1c6988556c3bef3de87fa789 (diff) | |
download | cpython-39d87b54715197ca9dcb6902bb43461c0ed701a2.zip cpython-39d87b54715197ca9dcb6902bb43461c0ed701a2.tar.gz cpython-39d87b54715197ca9dcb6902bb43461c0ed701a2.tar.bz2 |
Fix typos mostly in comments, docs and test names (GH-15209)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/listsort.txt | 2 | ||||
-rw-r--r-- | Objects/typeobject.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Objects/listsort.txt b/Objects/listsort.txt index 8c87751..43fe157 100644 --- a/Objects/listsort.txt +++ b/Objects/listsort.txt @@ -328,7 +328,7 @@ found is still high in the memory hierarchy. We also can't delay merging unmerged, and the stack has a fixed size. What turned out to be a good compromise maintains two invariants on the -stack entries, where A, B and C are the lengths of the three righmost not-yet +stack entries, where A, B and C are the lengths of the three rightmost not-yet merged slices: 1. A > B+C diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 0ca7dcb..c816c3b 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -117,7 +117,7 @@ find_signature(const char *name, const char *doc) #define SIGNATURE_END_MARKER ")\n--\n\n" #define SIGNATURE_END_MARKER_LENGTH 6 /* - * skips past the end of the docstring's instrospection signature. + * skips past the end of the docstring's introspection signature. * (assumes doc starts with a valid signature prefix.) */ static const char * |