From eddc61f2659855e29fecf30eb545ecef15bb1ced Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 17 Jul 2022 12:20:40 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - docs/conf.py - docs/readme.rst - stream_framework/tests/storage/base.py Fixes: - Should read `that` rather than `shat`. - Should read `pollution` rather than `polution`. - Should read `immediately` rather than `immediatly`. Signed-off-by: Tim Gates --- docs/conf.py | 2 +- docs/readme.rst | 2 +- stream_framework/tests/storage/base.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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)