Skip to content

Commit 89fb906

Browse files
qwerty287Stelios Malathouras
authored and
Stelios Malathouras
committed
Fix various typos in docs (go-gitea#17844)
1 parent d0af785 commit 89fb906

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/content/doc/developers/guidelines-backend.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ So it's very important to manage these packages. Please take the below guideline
3232
To maintain understandable code and avoid circular dependencies it is important to have a good code structure. The Gitea backend is divided into the following parts:
3333

3434
- `build`: Scripts to help build Gitea.
35-
- `cmd`: All Gitea actual sub commands includes web, doctor, serv, hooks, admin and etc. `web` will start the web service. `serv` and `hooks` will be invoked by git or openSSH. Other sub commands could help to mantain Gitea.
35+
- `cmd`: All Gitea actual sub commands includes web, doctor, serv, hooks, admin and etc. `web` will start the web service. `serv` and `hooks` will be invoked by git or openSSH. Other sub commands could help to maintain Gitea.
3636
- `integrations`: Integration tests
3737
- `models`: Contains the data structures used by xorm to construct database tables. It also contains functions to query and update the database. Dependencies to other Gitea code should be avoided. You can make exceptions in cases such as logging.
3838
- `models/db`: Basic database operations. All other `models/xxx` packages should depend on this package. The `GetEngine` function should only be invoked from `models/`.

docs/content/doc/help/faq.en-us.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Gitea supports three official themes right now, `gitea` (light), `arc-green` (da
162162
To add your own theme, currently the only way is to provide a complete theme (not just color overrides)
163163

164164
As an example, let's say our theme is `arc-blue` (this is a real theme, and can be found [in this issue](https://github.com/go-gitea/gitea/issues/6011))
165-
Name the `.css` file `theme-arc-blue.css` and add it to your custom folder in `custom/pulic/css`
165+
Name the `.css` file `theme-arc-blue.css` and add it to your custom folder in `custom/public/css`
166166
Allow users to use it by adding `arc-blue` to the list of `THEMES` in your `app.ini`
167167

168168
## SSHD vs built-in SSH

docs/content/doc/installation/on-cloud-provider.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ you can experiment with running Gitea.
3333

3434
## Vultr
3535

36-
Gitea can found in [Vultr](https://www.vultr.com)'s marketplace.
36+
Gitea can be found in [Vultr](https://www.vultr.com)'s marketplace.
3737

3838
To deploy Gitea to Vultr, have a look at the [Vultr Marketplace](https://www.vultr.com/marketplace/apps/gitea).
3939

docs/content/doc/usage/https-support.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ KEY_FILE = key.pem
3838
```
3939

4040
Note that if your certificate is signed by a third party certificate authority (i.e. not self-signed), then cert.pem should contain the certificate chain. The server certificate must be the first entry in cert.pem, followed by the intermediaries in order (if any). The root certificate does not have to be included because the connecting client must already have it in order to estalbish the trust relationship.
41-
To learn more about the config values, please checkout the [Config Cheat Sheet](../config-cheat-sheet#server).
41+
To learn more about the config values, please checkout the [Config Cheat Sheet](../config-cheat-sheet#server-server).
4242

4343
### Setting up HTTP redirection
4444

@@ -69,7 +69,7 @@ LETSENCRYPT_DIRECTORY=https
6969
LETSENCRYPT_EMAIL=email@example.com
7070
```
7171

72-
To learn more about the config values, please checkout the [Config Cheat Sheet](../config-cheat-sheet#server).
72+
To learn more about the config values, please checkout the [Config Cheat Sheet](../config-cheat-sheet#server-server).
7373

7474
## Using a reverse proxy
7575

0 commit comments

Comments
 (0)