diff options
author | silverwind <me@silverwind.io> | 2024-04-27 10:03:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-27 08:03:49 +0000 |
commit | 9b2536b78fdcd3cf444a2f54857d9871e153858f (patch) | |
tree | 64a2a18c397a44e4e3cf1fc392d696d919e39685 /routers/api/v1 | |
parent | dcc3c17e5c41ad446b71215b095617e066a2e8e1 (diff) | |
download | gitea-9b2536b78fdcd3cf444a2f54857d9871e153858f.tar.gz gitea-9b2536b78fdcd3cf444a2f54857d9871e153858f.zip |
Update misspell to 0.5.1 and add `misspellings.csv` (#30573)
Misspell 0.5.0 supports passing a csv file to extend the list of
misspellings, so I added some common ones from the codebase. There is at
least one typo in a API response so we need to decided whether to revert
that and then likely remove the dict entry.
Diffstat (limited to 'routers/api/v1')
-rw-r--r-- | routers/api/v1/shared/runners.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/shared/runners.go b/routers/api/v1/shared/runners.go index c850ad7866..f088e9a2d4 100644 --- a/routers/api/v1/shared/runners.go +++ b/routers/api/v1/shared/runners.go @@ -12,7 +12,7 @@ import ( "code.gitea.io/gitea/services/context" ) -// RegistrationToken is response related to registeration token +// RegistrationToken is response related to registration token // swagger:response RegistrationToken type RegistrationToken struct { Token string `json:"token"` |