diff --git a/docs/conf.py b/docs/conf.py
index 0b684db7..3217a287 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -294,7 +294,7 @@
 # The format is a list of tuples containing the path and title.
 # epub_pre_files = []
 
-# HTML files shat should be inserted after the pages created by sphinx.
+# HTML files that should be inserted after the pages created by sphinx.
 # The format is a list of tuples containing the path and title.
 # epub_post_files = []
 
diff --git a/docs/readme.rst b/docs/readme.rst
index 817ba4e9..4fe84f85 100644
--- a/docs/readme.rst
+++ b/docs/readme.rst
@@ -35,7 +35,7 @@ GetStream.io
 Stream Framework's authors also offer a Saas solution for building feed
 systems at `getstream.io `__ The hosted service is
 highly optimized and allows you start building your application
-immediatly. It saves you the hastle of maintaining Cassandra, Redis,
+immediately. It saves you the hastle of maintaining Cassandra, Redis,
 Faye, RabbitMQ and Celery workers. Clients are available for
 `Node `__,
 `Ruby `__,
diff --git a/stream_framework/tests/storage/base.py b/stream_framework/tests/storage/base.py
index ce8c715d..51695fa6 100644
--- a/stream_framework/tests/storage/base.py
+++ b/stream_framework/tests/storage/base.py
@@ -163,7 +163,7 @@ def test_count_insert(self):
     @implementation
     def test_add_many(self):
         results = self.storage.get_slice(self.test_key, 0, None)
-        # make sure no data polution
+        # make sure no data pollution
         assert results == []
         activities = self._build_activity_list(range(3, 0, -1))
         self.storage.add_many(self.test_key, activities)