From cdc9b61db17caf8f4bbcf1e5e45751c1e50040f5 Mon Sep 17 00:00:00 2001 From: Blake Jakopovic Date: Wed, 9 Nov 2022 15:59:12 +0100 Subject: [PATCH] Update example.go Fixed a typo and capitalised --- example/example.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/example.go b/example/example.go index 10b8a48..846bdfd 100644 --- a/example/example.go +++ b/example/example.go @@ -49,7 +49,7 @@ func main() { // create and publish events go func() { for { - content := fmt.Sprintf("henlo world at time: %s", time.Now().String()) + content := fmt.Sprintf("Hello world at time: %s", time.Now().String()) event, statuses, err := pool.PublishEvent(&nostr.Event{ CreatedAt: time.Now(), Kind: nostr.KindTextNote,