Skip to content

Commit e52807e

Browse files
committed
authctl: Fix grammar of lock/unlock command description
Thanks to Shane for spotting that.
1 parent a346d3e commit e52807e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/authctl/user/lock.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
var lockCmd = &cobra.Command{
1414
Use: "lock <user>",
1515
Short: "Lock (disable) a user managed by authd",
16-
Long: `Lock a user so that it cannot log in.`,
16+
Long: `Lock a user so that they cannot log in.`,
1717
Args: cobra.ExactArgs(1),
1818
ValidArgsFunction: completion.Users,
1919
RunE: func(cmd *cobra.Command, args []string) error {

cmd/authctl/user/unlock.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
var unlockCmd = &cobra.Command{
1414
Use: "unlock <user>",
1515
Short: "Unlock (enable) a user managed by authd",
16-
Long: `Unlock a locked user so that it can log in again.`,
16+
Long: `Unlock a locked user so that they can log in again.`,
1717
Args: cobra.ExactArgs(1),
1818
ValidArgsFunction: completion.Users,
1919
RunE: func(cmd *cobra.Command, args []string) error {

0 commit comments

Comments
 (0)