diff options
author | Atin <61903527+atin@users.noreply.github.com> | 2021-05-19 10:42:09 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 13:12:09 +0800 |
commit | d6987ee05be8b5da279e530cfd65512cb903c72b (patch) | |
tree | 92da4f00413abb945477a2c4e9df509a9c5b161d /internal/cmd/serv.go | |
parent | 509a392272a2ba2bde9d64bf5a55a58d0eadccc4 (diff) |
chore: fix typos in code comments (#6556)
Diffstat (limited to 'internal/cmd/serv.go')
-rw-r--r-- | internal/cmd/serv.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/cmd/serv.go b/internal/cmd/serv.go index aa7ee1bf..1f9ef044 100644 --- a/internal/cmd/serv.go +++ b/internal/cmd/serv.go @@ -230,7 +230,7 @@ func runServ(c *cli.Context) error { // Check if the key can access to the repository in case of it is a deploy key (a deploy keys != user key). // A deploy key doesn't represent a signed in user, so in a site with Auth.RequireSignInView enabled, // we should give read access only in repositories where this deploy key is in use. In other cases, - // a server or system using an active deploy key can get read access to all repositories on a Gogs instace. + // a server or system using an active deploy key can get read access to all repositories on a Gogs instance. if key.IsDeployKey() && conf.Auth.RequireSigninView { checkDeployKey(key, repo) } |