Skip to content
Merged
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 README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Inspired by `requests`_ for its simplicity and powered by `lxml`_ for its speed:
>>> import newspaper
>>> newspaper.languages()

Your available langauges are:
Your available languages are:
input code full name

ar Arabic
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ of popular news source urls.. In case you need help choosing a news source!

>>> newspaper.languages()

Your available langauges are:
Your available languages are:
input code full name

ar Arabic
Expand All @@ -259,4 +259,4 @@ of popular news source urls.. In case you need help choosing a news source!
sv Swedish
zh Chinese



2 changes: 1 addition & 1 deletion newspaper/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def print_available_languages():
}

codes = get_available_languages()
print '\nYour available langauges are:'
print '\nYour available languages are:'
print '\ninput code\t\tfull name'
for code in codes:
print ' %s\t\t\t %s' % (code, language_dict[code])
Expand Down