Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix a few typos #2218

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ miscellanous tweaks
The :command:`mrjob audit-emr-usage` subcommand no longer attempts to read
cluster pool names from clusters launched by mrjob v0.5.x.

Method arguments in filesystem classes (in ``mrjob.fs``) are now consistenly
Method arguments in filesystem classes (in ``mrjob.fs``) are now consistently
named. This probably won't matter in practice, as
``runner.fs <mrjob.runner.MRJobRunner.fs>`` is always a
:py:class:`~mrjob.fs.composite.CompositeFilesystem` anyhow.
Expand Down
2 changes: 1 addition & 1 deletion mrjob/examples/mr_text_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
An "ngram" is a word or phrase. "foo" is a 1-gram; "foo bar baz" is a 3-gram.

"tf" refers to term frequency, that is, the number of times an ngram appears.
"df" referse to document frequency, that is, the number of documents an ngram
"df" refers to document frequency, that is, the number of documents an ngram
appears in at least once.
"""
from collections import defaultdict
Expand Down
2 changes: 1 addition & 1 deletion mrjob/sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class SimMRJobRunner(MRJobRunner):
'partitioner',
]

# options that we ignore becaue they require real Hadoop.
# options that we ignore because they require real Hadoop.
_IGNORED_HADOOP_OPTS = [
'libjars',
]
Expand Down