This commit is contained in:
John ShaggyTwoDope Jenkins
2015-10-13 13:27:17 -07:00
parent 1e3abc17d8
commit e2fdb22f27
4 changed files with 4 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ Features
* Unicode support has been vastly improved and is now turned on by default. Ascii only mode can be toggled with the `--ascii` command line flag.
* Added pageup and pagedown with the `m` and `n` keys.
* Support for terminal based webbrowsers such as links and w3m.
* Browsing history is now persistant and stored in `$XDG_CACHE_HOME`.
* Browsing history is now persistent and stored in `$XDG_CACHE_HOME`.
Bugfixes

View File

@@ -20,7 +20,7 @@ class BaseContent(object):
while True:
if step < 0 and index < 0:
# Hack to prevent displaying negative indicies if iterating in
# Hack to prevent displaying negative indices if iterating in
# the negative direction.
break
try:

View File

@@ -129,7 +129,7 @@ class LoadScreen(object):
"""
Display a loading dialog while waiting for a blocking action to complete.
This class spins off a seperate thread to animate the loading screen in the
This class spins off a separate thread to animate the loading screen in the
background.
Usage:

View File

@@ -188,7 +188,7 @@ def strip_subreddit_url(permalink):
"""
Strip a subreddit name from the subreddit's permalink.
This is used to avoid submission.subreddit.url making a seperate API call.
This is used to avoid submission.subreddit.url making a separate API call.
"""
subreddit = permalink.split('/')[4]