corrected docstring

Former-commit-id: e37c689031
This commit is contained in:
Joshua Chin 2015-07-17 15:12:23 -04:00
parent be8921869a
commit c0650a6893

View File

@ -27,7 +27,7 @@ def read_freqs(filename, cutoff=0):
"""
Read words and their frequencies from a CSV file.
Only words with a frequency greater than `cutoff` are returned.
Only words with a frequency greater than or equal to `cutoff` are returned.
If `cutoff` is greater than 0, the csv file must be sorted by frequency
in descending order.