Skip to content

Commit

Permalink
fix typo in README.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
Keda87 authored Dec 4, 2017
1 parent 6868aad commit 111f35e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Python wrapper for "The Internet Chuck Norris Database" http://www.icndb.com/api
```python
from chuck import ChuckNorris

cn = ChunkNorris()
cn = ChuckNorris()

# Get random jokes.
data = cn.random()
Expand Down Expand Up @@ -58,7 +58,7 @@ print(total)
# Get all jokes categories.
categories = cn.get_jokes_categories()
for i in categories:
print i
print(i)

# Get entire jokes data.
jokes = cn.get_all_jokes()
Expand Down

0 comments on commit 111f35e

Please sign in to comment.