Skip to content

Commit 5e41327

Browse files
committed
Merge pull request scikit-learn#6530 from Arafatk/master
Correcting Typo in sklearn.linear_model.Ridge
2 parents d4a8d73 + 77c17bc commit 5e41327

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/linear_model/ridge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ class RidgeClassifier(LinearClassifierMixin, _BaseRidge):
696696
(possibility to set `tol` and `max_iter`).
697697
698698
- 'lsqr' uses the dedicated regularized least-squares routine
699-
scipy.sparse.linalg.lsqr. It is the fatest but may not be available
699+
scipy.sparse.linalg.lsqr. It is the fastest but may not be available
700700
in old scipy versions. It also uses an iterative procedure.
701701
702702
- 'sag' uses a Stochastic Average Gradient descent. It also uses an

0 commit comments

Comments
 (0)