Skip to content

Commit e8a196c

Browse files
authored
Fix typo in docs (#1768)
1 parent 6b9d604 commit e8a196c

28 files changed

+43
-39
lines changed

content/en/admin/backups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ menu:
77
parent: admin
88
---
99

10-
For any real-world use, you should make sure to regularly backup your Mastodon server.
10+
For any real-world use, you should make sure to regularly back up your Mastodon server.
1111

1212
## Overview {#overview}
1313

content/en/admin/migrating.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ At a high level, you’ll need to copy over the following:
4444
* The `~/live/public/system` directory, which contains user-uploaded images and videos (if using S3, you don’t need this)
4545
* The PostgreSQL database (using [pg_dump](https://www.postgresql.org/docs/9.1/static/backup-dump.html))
4646
* The `~/live/.env.production` file, which contains server config and secrets
47-
* The Redis database in the `/var/lib/redis/` directory, which contains unproccessed Sidekiq jobs.
47+
* The Redis database in the `/var/lib/redis/` directory, which contains unprocessed Sidekiq jobs.
4848

4949
Less crucially, you’ll probably also want to copy the following for convenience:
5050

content/en/admin/optional/captcha.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ Other providers may be added in the future.
2727
- From the Account Settings menu in hCaptcha, obtain your Secret Key
2828
- Add the values to your Mastodon environment configuration as `HCAPTCHA_SITE_KEY` and `HCAPTCHA_SECRET_KEY`
2929
- Restart the Mastodon services running on your server
30-
- From the Mastodon web interface navigate to **Administration** > **Server settings** > **Registrations** and check the box labled "Require new users to solve a CAPTCHA to confirm their account"
30+
- From the Mastodon web interface navigate to **Administration** > **Server settings** > **Registrations** and check the box labeled "Require new users to solve a CAPTCHA to confirm their account"
3131

3232
![](/assets/captcha/admin-view.png)

content/en/admin/optional/object-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ limits.
211211

212212
Default: 3
213213

214-
During batch delete operations, S3 providers may perodically fail or
214+
During batch delete operations, S3 providers may periodically fail or
215215
timeout while processing deletion requests. Mastodon will back off and
216216
retry the request up to this maximum number of times.
217217

content/en/admin/optional/tor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ When this happens you may uncomment the following line in your nginx.conf:
175175
# server_names_hash_bucket_size 64;
176176
```
177177

178-
If you still have problems you may consider incresing the size up to 128.
178+
If you still have problems you may consider increasing the size up to 128.
179179

180180
## Gotchas {#gotchas}
181181

content/en/admin/scaling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ REPLICA_DB_TASKS
418418

419419
Alternatively, you can also use `REPLICA_DATABASE_URL` if you want to configure them all using the same variable.
420420

421-
`REPLICA_DB_TASKS=false` will connect to an replica database without any database mangement tasks such as schema management, migrations, seeds, etc. By default it is set to true.
421+
`REPLICA_DB_TASKS=false` will connect to an replica database without any database management tasks such as schema management, migrations, seeds, etc. By default it is set to true.
422422

423423
`REPLICA_PREPARED_STATEMENTS` is an optional override for the `PREPARED_STATEMENTS` value. By default it is set to true if `PREPARED_STATEMENTS` is not set.
424424

content/en/client/authorized.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ When we register our app and when we authorize our user, we need to define what
1313

1414
When authorizing a user, the `scope` query parameter must be a subset of those we specified when we created our app. In our ongoing example, we specified `read write push` as our scopes when we created our app, however it is a better idea to only request access to what your app will actually need through [granular scopes]({{< relref "api/oauth-scopes#granular-scopes" >}}).
1515

16-
See [OAuth Scopes]({{< relref "api/oauth-scopes" >}}) for a full list of scopes. Each API method's documentation will also specify the OAuth [token type]({{< relref "api/oauth-tokens" >}}) and the scopes required to call it. If an endpoint specifies `read:statuses` and you have `read` access, then you will be able to use that endpoint, since scopes are hierarchial.
16+
See [OAuth Scopes]({{< relref "api/oauth-scopes" >}}) for a full list of scopes. Each API method's documentation will also specify the OAuth [token type]({{< relref "api/oauth-tokens" >}}) and the scopes required to call it. If an endpoint specifies `read:statuses` and you have `read` access, then you will be able to use that endpoint, since scopes are hierarchical.
1717

1818
{{< page-relref ref="api/oauth-scopes" caption="OAuth Scopes" >}}
1919

content/en/entities/Error.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Error: Your login is currently pending approval. Appears when the OAuth token's
7777

7878
#### RecordNotFound {#not-found}
7979

80-
Error: Record not found. Appears when an entity record does not exist, or the authorized user is not within the audience of a private entity.operates on a user.
80+
Error: Record not found. Appears when an entity record does not exist, or the authorized user is not within the audience of a private entity.
8181

8282
### 422 - Unprocessable entity {#422}
8383

content/en/entities/Role.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ To determine the permissions available to a certain role, convert the `permissio
126126
: **Delete User Data**. Allows users to delete other users' data without delay.
127127

128128
0x100000
129-
: **View live and topic feeds**. Allows users to view publice “firehose”, hashtag and link feeds even when those are disabled.
129+
: **View live and topic feeds**. Allows users to view public “firehose”, hashtag and link feeds even when those are disabled.
130130

131131
## See also
132132

content/en/entities/ShallowQuote.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ aliases: [
3232
`unauthorized` = The quote has been approved, but cannot be displayed because the user is not authorized to see it.\
3333
`blocked_account` = The quote has been approved, but should not be displayed because the user has blocked the account being quoted. This is one of the few cases where `quoted_status_id` is non-null.\
3434
`blocked_domain` = The quote has been approved, but should not be displayed because the user has blocked the domain of the account being quoted. This is one of the few cases where `quoted_status_id` is non-null.\
35-
`muted_account` = The quote has been approved, but should not be displayed because the user has muted the the account being quoted. This is one of the few cases where `quoted_status_id` is non-null.
35+
`muted_account` = The quote has been approved, but should not be displayed because the user has muted the account being quoted. This is one of the few cases where `quoted_status_id` is non-null.
3636
**Version history:**\
3737
4.4.0 - added\
3838
4.5.0 - added `blocked_account`, `blocked_domain` and `muted_account`

0 commit comments

Comments
 (0)