Skip to content

Commit 80ccf7b

Browse files
committed
Merge pull request scikit-learn#2877 from pmandera/tfidf-citation
Fix citation in TfidfTransformer
2 parents ba89ed0 + 122cb23 commit 80ccf7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sklearn/feature_extraction/text.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -933,9 +933,9 @@ class TfidfTransformer(BaseEstimator, TransformerMixin):
933933
.. [Yates2011] `R. Baeza-Yates and B. Ribeiro-Neto (2011). Modern
934934
Information Retrieval. Addison Wesley, pp. 68-74.`
935935
936-
.. [MSR2008] `C.D. Manning, H. Schuetze and P. Raghavan (2008).
936+
.. [MRS2008] `C.D. Manning, P. Raghavan and H. Schuetze (2008).
937937
Introduction to Information Retrieval. Cambridge University
938-
Press, pp. 121-125.`
938+
Press, pp. 118-120.`
939939
"""
940940

941941
def __init__(self, norm='l2', use_idf=True, smooth_idf=True,

0 commit comments

Comments
 (0)