Skip to content

Commit

Permalink
Some typos fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mafagafogigante committed Jul 25, 2014
1 parent 4298bcc commit b13c6a0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ can run on Python 2.7.x and 3.x .


Showcase
----------
--------

.. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/rs.gif
:alt: gif
Expand Down Expand Up @@ -90,7 +90,7 @@ suggestion. Input history from previous run is available as well.
Available commands are listed in `Read The Docs`_.

Theme customization
------------------------
-------------------

Rainbow Stream is shipped with some default themes.
You can either change theme by ``theme`` command or create your favorite one.
Expand Down
4 changes: 2 additions & 2 deletions rainbowstream/draw.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ def draw(t, keyword=None, check_semaphore=False, fil=[], ig=[]):
if roj:
occur = roj.group()
ary = tweet.split(occur)
delimeter = color_func(c['TWEET']['keyword'])(occur)
tweet = delimeter.join(ary)
delimiter = color_func(c['TWEET']['keyword'])(occur)
tweet = delimiter.join(ary)

# Draw rainbow
line1 = u"{u:>{uw}}:".format(
Expand Down
2 changes: 1 addition & 1 deletion rainbowstream/image.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This source is borrowed from folowwing link
* This source is borrowed from following link
* https://github.com/jart/fabulous/blob/master/fabulous/_xterm256.c
* I make a slightly change to fit my module here
*/
Expand Down
2 changes: 1 addition & 1 deletion rainbowstream/py3patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
except:
from html import unescape

# raw_input and map functiion behaviour
# raw_input and map function behaviour
if sys.version[0] == "3":
raw_input = input
lmap = lambda f, a: list(map(f, a))
Expand Down

0 comments on commit b13c6a0

Please sign in to comment.