Skip to content

Commit 8101d80

Browse files
proailuruslunny
authored andcommitted
Update serv.go (#7822)
small semantics fix "Hi there, user!" looks better than "Hi there: user!"
1 parent 80d2c25 commit 8101d80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/serv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ func runServ(c *cli.Context) error {
109109
if key.Type == models.KeyTypeDeploy {
110110
println("Hi there! You've successfully authenticated with the deploy key named " + key.Name + ", but Gitea does not provide shell access.")
111111
} else {
112-
println("Hi there: " + user.Name + "! You've successfully authenticated with the key named " + key.Name + ", but Gitea does not provide shell access.")
112+
println("Hi there, " + user.Name + "! You've successfully authenticated with the key named " + key.Name + ", but Gitea does not provide shell access.")
113113
}
114114
println("If this is unexpected, please log in with password and setup Gitea under another user.")
115115
return nil

0 commit comments

Comments
 (0)