git: e5901f6cd32a - stable/13 - random(3): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Thu, 14 Apr 2022 06:09:01 UTC
The branch stable/13 has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=e5901f6cd32a5b54cfa8a5550ac3e6c0b66880c5

commit e5901f6cd32a5b54cfa8a5550ac3e6c0b66880c5
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-04-09 06:52:28 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-04-14 06:06:21 +0000

    random(3): Fix a typo in a source code comment
    
    - s/psuedo/pseudo/
    
    (cherry picked from commit 474df59def1a8ab90354381b0103cbc9556fce12)
---
 sys/dev/random/hash.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/random/hash.c b/sys/dev/random/hash.c
index 135f585ea382..a7b9b3cb1633 100644
--- a/sys/dev/random/hash.c
+++ b/sys/dev/random/hash.c
@@ -125,7 +125,7 @@ randomdev_encrypt_init(union randomdev_key *context, const void *data)
 }
 
 /*
- * Create a psuedorandom output stream of 'bytecount' bytes using a CTR-mode
+ * Create a pseudorandom output stream of 'bytecount' bytes using a CTR-mode
  * cipher or similar.  The 128-bit counter is supplied in the in-out parmeter
  * 'ctr.'  The output stream goes to 'd_out.'
  *