]> granicus.if.org Git - python/commitdiff
Fix small typo in tupleobject.h (#4801)
authorChris <cbrown119955@gmail.com>
Tue, 12 Dec 2017 07:59:30 +0000 (23:59 -0800)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Tue, 12 Dec 2017 07:59:30 +0000 (09:59 +0200)
Include/tupleobject.h

index 98c26220ea09ba5e203b951bb9ce9044cb2691a6..72a7d8d5850dfd30a572a69a619997aa2d4b6916 100644 (file)
@@ -10,7 +10,7 @@ extern "C" {
 /*
 Another generally useful object type is a tuple of object pointers.
 For Python, this is an immutable type.  C code can change the tuple items
-(but not their number), and even use tuples are general-purpose arrays of
+(but not their number), and even use tuples as general-purpose arrays of
 object references, but in general only brand new tuples should be mutated,
 not ones that might already have been exposed to Python code.