diff options
author | naoki kuroda <68233204+nnnkkk7@users.noreply.github.com> | 2022-09-18 17:13:34 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-18 16:13:34 +0800 |
commit | c87e6a89da05bcf57cc0b60359915efd008f744f (patch) | |
tree | 30bc00dd45d3001b8b650e560b6f5c87708219dc | |
parent | 395f65c65a4b3d2bb06056b9bba3f4c016ab03e9 (diff) | |
download | gitea-c87e6a89da05bcf57cc0b60359915efd008f744f.tar.gz gitea-c87e6a89da05bcf57cc0b60359915efd008f744f.zip |
Fix typo (#21201)
<!--
Please check the following:
1. Make sure you are targeting the `main` branch, pull requests on
release branches are only allowed for bug fixes.
2. Read contributing guidelines:
https://github.com/go-gitea/gitea/blob/main/CONTRIBUTING.md
3. Describe what your pull request does and which issue you're targeting
(if any)
-->
I fixed typo.
-rw-r--r-- | cmd/serv.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/serv.go b/cmd/serv.go index b00c3962f4..06561f348a 100644 --- a/cmd/serv.go +++ b/cmd/serv.go @@ -43,7 +43,7 @@ const ( var CmdServ = cli.Command{ Name: "serv", Usage: "This command should only be called by SSH shell", - Description: `Serv provide access auth for repositories`, + Description: "Serv provides access auth for repositories", Action: runServ, Flags: []cli.Flag{ cli.BoolFlag{ |