Browse Source

Merge pull request #632 from timgates42/bugfix_typos

docs: Fix a few typos
Peter Justin 2 years ago
parent
commit
ac55a21537

+ 1 - 1
docs/installation.rst

@@ -260,7 +260,7 @@ or::
 
     flaskbb install
 
-During the installation process, you will be asked to provide a username, email adddress 
+During the installation process, you will be asked to provide a username, email address 
 and password for your administrator user. Using the
 ``make install`` command is recommended as it checks that the dependencies
 are also installed.

+ 1 - 1
flaskbb/core/auth/registration.py

@@ -68,7 +68,7 @@ class RegistrationFailureHandler(ABC):
 
 class RegistrationPostProcessor(ABC):
     """
-    Used to post proccess successful registrations by the time this
+    Used to post process successful registrations by the time this
     interface is called, the user has already been persisted into the
     database.
     """

+ 1 - 1
flaskbb/core/tokens.py

@@ -117,7 +117,7 @@ class TokenSerializer(ABC):
 
 class TokenVerifier(ABC):
     """
-    Used to verify the validatity of tokens post
+    Used to verify the validity of tokens post
     deserialization, such as an email matching the
     user id in the provided token.
 

+ 1 - 1
flaskbb/plugins/spec.py

@@ -284,7 +284,7 @@ def flaskbb_gather_registration_validators():
     :class:`~flaskbb.core.auth.registration.UserRegistrationInfo` and raises
     a :class:`~flaskbb.core.exceptions.ValidationError` if the registration
     is invalid or :class:`~flaskbb.core.exceptions.StopValidation` if
-    validation of the registration should end immediatey.
+    validation of the registration should end immediately.
 
     Example::
 

+ 1 - 1
tests/unit/test_forum_models.py

@@ -579,7 +579,7 @@ def test_forumsread(topic, user):
 
 
 def test_topicsread(topic, user):
-    """Tests if the topicsread trakcer can be saved/edited and deleted with the
+    """Tests if the topicsread tracker can be saved/edited and deleted with the
     implemented save and delete methods."""
     topicsread = TopicsRead()
     topicsread.user_id = user.id