diff --git a/docs/setup.rst b/docs/setup.rst --- a/docs/setup.rst +++ b/docs/setup.rst @@ -117,7 +117,7 @@ For a full index rebuild, run:: paster make-index my.ini -f -The ``--repo-location`` option allows the location of the repositories to be overriden; +The ``--repo-location`` option allows the location of the repositories to be overridden; usually, the location is retrieved from the Kallithea database. The ``--index-only`` option can be used to limit the indexed repositories to a comma-separated list:: diff --git a/kallithea/lib/auth.py b/kallithea/lib/auth.py --- a/kallithea/lib/auth.py +++ b/kallithea/lib/auth.py @@ -481,7 +481,7 @@ class AuthUser(object): user_model = UserModel() self.anonymous_user = User.get_default_user(cache=True) - # These attributes will be overriden by fill_data, below, unless the + # These attributes will be overridden by fill_data, below, unless the # requested user cannot be found and the default anonymous user is # not enabled. self.user_id = None diff --git a/kallithea/tests/functional/test_login.py b/kallithea/tests/functional/test_login.py --- a/kallithea/tests/functional/test_login.py +++ b/kallithea/tests/functional/test_login.py @@ -327,7 +327,7 @@ class TestLoginController(TestController 'email': email, 'firstname': name, 'lastname': lastname, - 'admin': True}) # This should be overriden + 'admin': True}) # This should be overridden self.assertEqual(response.status, '302 Found') self.checkSessionFlash(response, 'You have successfully registered into Kallithea')