Some typos fixed
authormafagafogigante <mafagafogigante@gmail.com>
Fri, 25 Jul 2014 22:04:45 +0000 (19:04 -0300)
committermafagafogigante <mafagafogigante@gmail.com>
Fri, 25 Jul 2014 22:04:45 +0000 (19:04 -0300)
README.rst
rainbowstream/draw.py
rainbowstream/image.c
rainbowstream/py3patch.py

index 29c0c7d16551bf4d9d071fe2ca8624afcc6daece..976461fabc74da9d613af79b29424db9f98b73ce 100644 (file)
@@ -15,7 +15,7 @@ can run on Python 2.7.x and 3.x .
 \r
 \r
 Showcase\r
-----------\r
+--------\r
 \r
 .. figure:: https://raw.githubusercontent.com/DTVD/rainbowstream/master/screenshot/rs.gif\r
    :alt: gif\r
@@ -90,7 +90,7 @@ suggestion. Input history from previous run is available as well.
 Available commands are listed in `Read The Docs`_.\r
 \r
 Theme customization\r
-------------------------\r
+-------------------\r
 \r
 Rainbow Stream is shipped with some default themes.\r
 You can either change theme by ``theme`` command or create your favorite one.\r
index ae60a72a2a49a9e7f1c5c12597c481662fff6fe1..3bf392076185dc969a1adad6a63e657991af5515 100644 (file)
@@ -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(
index 10aa6bbe944f4506aa43f06054fd2a029576dfa5..e7d7413f5e6c7d8296ad549826ec9f7db0a9d212 100644 (file)
@@ -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
  */
index 6dc213fdf084d92ca029c14b0ac487f7ecfb9c7f..0dd6be5f3b7c85a77fb56ea6f98e647848e6cb1d 100644 (file)
@@ -16,7 +16,7 @@ try:
 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))