diff options
author | Niko Hoffrén <niko.hoffren@gmail.com> | 2023-07-26 22:14:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 15:14:13 -0400 |
commit | 6ce89883ebe1c57de9472e0380255ff5918521f9 (patch) | |
tree | 82796ee55872df1d52d3115376a24e3277a4c9ec | |
parent | 36732005b413a774a4ee231e5c8ea2839a71485b (diff) | |
download | gitea-6ce89883ebe1c57de9472e0380255ff5918521f9.tar.gz gitea-6ce89883ebe1c57de9472e0380255ff5918521f9.zip |
Fix typos in Contributing.md (#26170)
Fixed typos considering CONTRIBUTING.md.
This line:
GitHub API compatability #github-api-compatability
changed to:
GitHub API compatibility #github-api-compatibility
and this line:
GitHub API compatability
changed to:
GitHub API compatibility
-rw-r--r-- | CONTRIBUTING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a656fa9ac9..4e6f0a34fa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,7 +34,7 @@ - [Backport PRs](#backport-prs) - [Documentation](#documentation) - [API v1](#api-v1) - - [GitHub API compatability](#github-api-compatability) + - [GitHub API compatibility](#github-api-compatibility) - [Adding/Maintaining API routes](#addingmaintaining-api-routes) - [When to use what HTTP method](#when-to-use-what-http-method) - [Requirements for API routes](#requirements-for-api-routes) @@ -339,7 +339,7 @@ If you add a new feature or change an existing aspect of Gitea, the documentatio The API is documented by [swagger](http://try.gitea.io/api/swagger) and is based on [the GitHub API](https://docs.github.com/en/rest). -### GitHub API compatability +### GitHub API compatibility Gitea's API should use the same endpoints and fields as the GitHub API as far as possible, unless there are good reasons to deviate. \ If Gitea provides functionality that GitHub does not, a new endpoint can be created. \ |