Skip to content

Commit 829f53d

Browse files
committed
fix formatting
1 parent 73f8df7 commit 829f53d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/hook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var (
3232
CmdHook = &cli.Command{
3333
Name: "hook",
3434
Usage: "(internal) Should only be called by Git",
35-
Hidden: true, //internal commands shouldn't be visible
35+
Hidden: true, // internal commands shouldn't be visible
3636
Description: "Delegate commands to corresponding Git hooks",
3737
Before: PrepareConsoleLoggerLevel(log.FATAL),
3838
Commands: []*cli.Command{

cmd/keys.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
var CmdKeys = &cli.Command{
2020
Name: "keys",
2121
Usage: "(internal) Should only be called by SSH server",
22-
Hidden: true, //internal commands shouldn't not be visible
22+
Hidden: true, // internal commands shouldn't not be visible
2323
Description: "Queries the Gitea database to get the authorized command for a given ssh key fingerprint",
2424
Before: PrepareConsoleLoggerLevel(log.FATAL),
2525
Action: runKeys,

cmd/serv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var CmdServ = &cli.Command{
4141
Name: "serv",
4242
Usage: "(internal) Should only be called by SSH shell",
4343
Description: "Serv provides access auth for repositories",
44-
Hidden: true, //Internal commands shouldn't be visible in help
44+
Hidden: true, // Internal commands shouldn't be visible in help
4545
Before: PrepareConsoleLoggerLevel(log.FATAL),
4646
Action: runServ,
4747
Flags: []cli.Flag{

0 commit comments

Comments
 (0)