Skip to content

Commit d29a9c5

Browse files
brianschubertLamentXU123terryjreedy
authored
[3.13] Doc: fix duplicated words (GH-136086) (#137357)
(cherry picked from commit 698bab5) Co-authored-by: Weilin Du <108666168+LamentXU123@users.noreply.github.com> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent fc190c3 commit d29a9c5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Include/internal/mimalloc/mimalloc/types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ void _mi_stat_counter_increase(mi_stat_counter_t* stat, size_t amount);
678678
// Thread Local data
679679
// ------------------------------------------------------
680680

681-
// A "span" is is an available range of slices. The span queues keep
681+
// A "span" is an available range of slices. The span queues keep
682682
// track of slice spans of at most the given `slice_count` (but more than the previous size class).
683683
typedef struct mi_span_queue_s {
684684
mi_slice_t* first;

Lib/test/test_iter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,7 @@ def test_error_iter(self):
11471147

11481148
def test_exception_locations(self):
11491149
# The location of an exception raised from __init__ or
1150-
# __next__ should should be the iterator expression
1150+
# __next__ should be the iterator expression
11511151

11521152
def init_raises():
11531153
try:

Lib/test/test_listcomps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ def test_multiple_comprehension_name_reuse(self):
716716

717717
def test_exception_locations(self):
718718
# The location of an exception raised from __init__ or
719-
# __next__ should should be the iterator expression
719+
# __next__ should be the iterator expression
720720

721721
def init_raises():
722722
try:

Tools/scripts/summarize_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def get_optimization_stats(self) -> dict[str, tuple[int, int | None]]:
477477
): (trace_too_long, attempts),
478478
Doc(
479479
"Trace too short",
480-
"A potential trace is abandoned because it it too short.",
480+
"A potential trace is abandoned because it is too short.",
481481
): (trace_too_short, attempts),
482482
Doc(
483483
"Inner loop found", "A trace is truncated because it has an inner loop"

iOS/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ simulator build with a deployment target of 15.4.
196196
Merge thin frameworks into fat frameworks
197197
-----------------------------------------
198198

199-
Once you've built a ``Python.framework`` for each ABI and and architecture, you
199+
Once you've built a ``Python.framework`` for each ABI and architecture, you
200200
must produce a "fat" framework for each ABI that contains all the architectures
201201
for that ABI.
202202

0 commit comments

Comments
 (0)