From 582137d6fba6ab0f54ffe5e4ebeec402873590eb Mon Sep 17 00:00:00 2001 From: ZhiningLiu1998 Date: Tue, 4 May 2021 23:03:12 +0800 Subject: [PATCH] fix a typo in imblearn/over_sampling/_smote/base.py (#832) --- imblearn/over_sampling/_smote/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imblearn/over_sampling/_smote/base.py b/imblearn/over_sampling/_smote/base.py index cd7e02e3e..5e311460a 100644 --- a/imblearn/over_sampling/_smote/base.py +++ b/imblearn/over_sampling/_smote/base.py @@ -379,7 +379,7 @@ class SMOTENC(SMOTE): ----- See the original paper [1]_ for more details. - Supports mutli-class resampling. A one-vs.-rest scheme is used as + Supports multi-class resampling. A one-vs.-rest scheme is used as originally proposed in [1]_. See