From 2d911da0e455f2df376cfcbf64caadd2f2c7ce2a Mon Sep 17 00:00:00 2001 From: Robert Pollak Date: Wed, 20 May 2026 16:16:37 +0200 Subject: [PATCH] Fix typo in user guide regarding TransformerMixin --- doc/user_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user_guide.rst b/doc/user_guide.rst index 527d4c6..09da5da 100644 --- a/doc/user_guide.rst +++ b/doc/user_guide.rst @@ -35,7 +35,7 @@ The use case is the following: In addition, scikit-learn provides a mixin_, i.e. :class:`sklearn.base.TransformerMixin`, which -implement the combination of ``fit`` and ``transform`` called ``fit_transform``. +implements the combination of ``fit`` and ``transform`` called ``fit_transform``. One can import the mixin class as::