Skip to content

Commit

Permalink
Merge pull request #632 from timgates42/bugfix_typos
Browse files Browse the repository at this point in the history
docs: Fix a few typos
  • Loading branch information
sh4nks committed Dec 12, 2022
2 parents fe061d7 + ec76b44 commit ac55a21
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion flaskbb/core/auth/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __call__(self, user_info, failures):

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.
"""
Expand Down
2 changes: 1 addition & 1 deletion flaskbb/core/tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def loads(self, raw_token):

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.
Expand Down
2 changes: 1 addition & 1 deletion flaskbb/plugins/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_forum_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac55a21

Please sign in to comment.