Skip to content

Commit c82ffc8

Browse files
authored
DOC Remove repeated words in coments and docstring (scikit-learn#30093)
1 parent c7c05d6 commit c82ffc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_tools/update_environments_and_lock_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- make sure that the latest versions of all the dependencies are used in the CI.
88
There is a scheduled workflow that does this, see
99
.github/workflows/update-lock-files.yml. This is still useful to run this
10-
script when when the automated PR fails and for example some packages need to
10+
script when the automated PR fails and for example some packages need to
1111
be pinned. You can add the pins to this script, run it, and open a PR with
1212
the changes.
1313
- bump minimum dependencies in sklearn/_min_dependencies.py. Running this

sklearn/utils/extmath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ def randomized_svd(
537537
if is_array_api_compliant:
538538
Uhat, s, Vt = xp.linalg.svd(B, full_matrices=False)
539539
else:
540-
# When when array_api_dispatch is disabled, rely on scipy.linalg
540+
# When array_api_dispatch is disabled, rely on scipy.linalg
541541
# instead of numpy.linalg to avoid introducing a behavior change w.r.t.
542542
# previous versions of scikit-learn.
543543
Uhat, s, Vt = linalg.svd(

0 commit comments

Comments
 (0)