From 368f31126bd5b85e4b3e88b537e88e8170968b63 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 15 Jul 2021 06:55:31 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - README.md - stream_django/activity.py Fixes: - Should read `synchronization` rather than `syncronization`. - Should read `elsewhere` rather than `elsewehere`. --- README.md | 2 +- stream_django/activity.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3d3d1bb..d20ac44 100644 --- a/README.md +++ b/README.md @@ -284,7 +284,7 @@ Disable automatic tracking of Activity models. Default ```False``` ### Temporarily disabling the signals -Model syncronization is disabled during schema/data migrations runs, syncdb and fixture loading (and during django test runs). +Model synchronization is disabled during schema/data migrations runs, syncdb and fixture loading (and during django test runs). You can completely disable feed publishing via the ```STREAM_DISABLE_MODEL_TRACKING``` django setting. diff --git a/stream_django/activity.py b/stream_django/activity.py index 9499ed8..3c47901 100644 --- a/stream_django/activity.py +++ b/stream_django/activity.py @@ -36,7 +36,7 @@ class Activity(object): def activity_author_feed(self): ''' The name of the feed where the activity will be stored; this is normally - used by the manager class to determine if the activity should be stored elsewehere than + used by the manager class to determine if the activity should be stored elsewhere than settings.USER_FEED ''' pass