@@ -319,8 +319,8 @@ class HashingVectorizer(BaseEstimator, VectorizerMixin):
319
319
320
320
stop_words: string {'english'}, list, or None (default)
321
321
If a string, it is passed to _check_stop_list and the appropriate stop
322
- list is returned is currently the only
323
- supported string value.
322
+ list is returned. 'english' is currently the only supported string
323
+ value.
324
324
325
325
If a list, that list is assumed to contain stop words, all of which
326
326
will be removed from the resulting tokens.
@@ -500,8 +500,8 @@ class CountVectorizer(BaseEstimator, VectorizerMixin):
500
500
501
501
stop_words : string {'english'}, list, or None (default)
502
502
If a string, it is passed to _check_stop_list and the appropriate stop
503
- list is returned is currently the only
504
- supported string value.
503
+ list is returned. 'english' is currently the only supported string
504
+ value.
505
505
506
506
If a list, that list is assumed to contain stop words, all of which
507
507
will be removed from the resulting tokens.
@@ -1005,8 +1005,8 @@ class TfidfVectorizer(CountVectorizer):
1005
1005
1006
1006
stop_words : string {'english'}, list, or None (default)
1007
1007
If a string, it is passed to _check_stop_list and the appropriate stop
1008
- list is returned is currently the only
1009
- supported string value.
1008
+ list is returned. 'english' is currently the only supported string
1009
+ value.
1010
1010
1011
1011
If a list, that list is assumed to contain stop words, all of which
1012
1012
will be removed from the resulting tokens.
0 commit comments