Fix typos

Found via `codespell -S ./static -L keypair`
This commit is contained in:
Kian-Meng Ang 2022-11-25 12:30:21 +08:00 committed by GitHub
parent 786d6190f8
commit df5493dd2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ class TimelineEvent(models.Model):
class Types(models.TextChoices):
post = "post"
boost = "boost" # A boost from someone (post substitude)
boost = "boost" # A boost from someone (post substitute)
mentioned = "mentioned"
liked = "liked" # Someone liking one of our posts
followed = "followed"

View File

@ -14,7 +14,7 @@ Currently, it supports:
* Creating and receiving likes
* Delivering mentions to those mentioned, and notifications for incoming mentions
* Following and unfollowing
* Reciving follows and unfollows
* Receiving follows and unfollows
* A home timeline, a local timeline, and a federated timeline
* Profile pages with bios, icons, and header images
* Searching for users by exact handle

View File

@ -74,7 +74,7 @@ be provided from the first boot.
fully-qualified URL prefix that serves that directory.
* If it is set to ``gcs``, you must also provide ``TAKAHE_MEDIA_BUCKET``,
the name of the bucket to store files in. The bucket must be publically
the name of the bucket to store files in. The bucket must be publicly
readable and have "uniform access control" enabled.
* If it is set to ``s3``, you must also provide ``TAKAHE_MEDIA_BUCKET``,

View File

@ -14,7 +14,7 @@ class StateGraph:
automatic_states: ClassVar[Set["State"]]
def __init_subclass__(cls) -> None:
# Collect state memebers
# Collect state members
cls.states = {}
for name, value in cls.__dict__.items():
if name in ["__module__", "__doc__", "states"]:

View File

@ -18,7 +18,7 @@
order to delete it.
</p>
{% else %}
<p>Please confirm deletion of this domain - there are no identities registed on it.</p>
<p>Please confirm deletion of this domain - there are no identities registered on it.</p>
<div class="buttons">
<a class="button" href="{{ domain.urls.edit }}">Cancel</a>
<button class="delete">Confirm Deletion</button>