Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 299794968
  • Loading branch information
TensorFlow Datasets Team authored and copybara-github committed Mar 9, 2020
1 parent d2561c7 commit f36d8f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tensorflow_datasets/text/c4_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def split_wet_file(wet_file_path, counter_inc_fn=None):
def _maybe_get_page():
"""Generate a (url, {features}) page."""
if not url and url is not None:
counter_inc_fn("page-filitered-nourl")
counter_inc_fn("page-filtered-nourl")
if not content and content is not None:
counter_inc_fn("page-filtered-nocontent")
if not content_type and content_type is not None:
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_datasets/text/c4_utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def test_split_wet_file(self):
{
"wet-file": 1,
"page-emitted": 2,
"page-filitered-nourl": 1,
"page-filtered-nourl": 1,
}, dict(counters))


Expand Down

0 comments on commit f36d8f7

Please sign in to comment.