From bf43fc09e46f78d43ae8cd52d1c75ca622cfdd57 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Thu, 24 Aug 2023 22:58:55 +0900 Subject: [PATCH] fix typo --- nostrh/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostrh/main.go b/nostrh/main.go index 72c88d7..27df8a3 100644 --- a/nostrh/main.go +++ b/nostrh/main.go @@ -109,7 +109,7 @@ func main() { key := nostr.GeneratePrivateKey() err := keystore.SetSecret(key) if err == nil { - fmt.Print("šŸ— Generated key\nšŸ— You can check the public key with 'noshost show-public'\n") + fmt.Print("šŸ— Generated key\nšŸ— You can check the public key with 'nostrh show-public'\n") } return err },