From cbabe1c72e802c7c9de5198cd00b3a4532b0f50d Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Wed, 12 Jun 2024 19:16:00 +0000 Subject: [PATCH] typo --- peer/internal/uprng/uprng.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peer/internal/uprng/uprng.go b/peer/internal/uprng/uprng.go index 03e0e1792..ead5a4c78 100644 --- a/peer/internal/uprng/uprng.go +++ b/peer/internal/uprng/uprng.go @@ -47,7 +47,7 @@ func newPRNG() *prng { // seed reseeds the prng with kernel and existing cipher entropy, if the // cipher has been originally seeded. -// Panics only during intial seeding if a crypto/rand read errors. +// Panics only during initial seeding if a crypto/rand read errors. func (p *prng) seed() { _, err := cryptorand.Read(key) if err != nil && p.cipher == nil {