From 3672a2df3a860bcb97f932d3dc7785406329b49e Mon Sep 17 00:00:00 2001 From: QEDeD Date: Tue, 21 Apr 2026 18:55:20 +0200 Subject: [PATCH] Fix typo in API key creation help text Correct loose (opposite of tight) to lose (opposite of keep). --- cmd/headscale/cli/api_key.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/headscale/cli/api_key.go b/cmd/headscale/cli/api_key.go index 9443aadc..acc9ffa9 100644 --- a/cmd/headscale/cli/api_key.go +++ b/cmd/headscale/cli/api_key.go @@ -81,7 +81,7 @@ var createAPIKeyCmd = &cobra.Command{ Long: ` Creates a new Api key, the Api key is only visible on creation and cannot be retrieved again. -If you loose a key, create a new one and revoke (expire) the old one.`, +If you lose a key, create a new one and revoke (expire) the old one.`, Aliases: []string{"c", "new"}, RunE: grpcRunE(func(ctx context.Context, client v1.HeadscaleServiceClient, cmd *cobra.Command, args []string) error { expiration, err := expirationFromFlag(cmd)