Skip to content

Commit 270141b

Browse files
Apply suggestions from code review
Co-authored-by: Pieter Eendebak <[email protected]>
1 parent 3c0ef7c commit 270141b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/c-api/tuple.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Tuple Objects
6262
6363
Return a new tuple object of size 1,
6464
or ``NULL`` with an exception set on failure. The tuple value
65-
is initialized with the new reference to the *one* object.
65+
is initialized with a new reference to the *one* object.
6666
``PyTuple_MakeSingle(a)`` is equivalent to ``PyTuple_Pack(1, a)``.
6767
6868
*one* must not be ``NULL``.
@@ -72,7 +72,7 @@ Tuple Objects
7272
7373
Return a new tuple object of size 2,
7474
or ``NULL`` with an exception set on failure. The tuple values
75-
are initialized with the new references to the *one* and *two* objects.
75+
are initialized with new references to the *one* and *two* objects.
7676
``PyTuple_MakePair(a, b)`` is equivalent to ``PyTuple_Pack(2, a, b)``.
7777
7878
*one* and *two* must not be ``NULL``.

0 commit comments

Comments
 (0)