From 1a8238b697ca2f9a2a532fa3b173b9afd1afb52f Mon Sep 17 00:00:00 2001
From: Chris Duncan <chris@zoso.dev>
Date: Tue, 26 Nov 2024 11:33:23 -0800
Subject: [PATCH] Fix documentation of modification.

---
 src/lib/blake2b.ts | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/lib/blake2b.ts b/src/lib/blake2b.ts
index fa9d962..563ea4d 100644
--- a/src/lib/blake2b.ts
+++ b/src/lib/blake2b.ts
@@ -8,11 +8,9 @@
 // Used with permission. See LICENSES/ISC.txt
 // See for details: https://github.com/emilbayes/blake2b
 //
-// Modified in 2024 by Chris Duncan to hash secret key to public key using
-// BLAKE2b instead of SHA-512 as specified in the documentation for Nano
-// cryptocurrency.
-// See for details: https://docs.nano.org/integration-guides/the-basics/
-// Original source commit: https://github.com/dchest/tweetnacl-js/blob/71df1d6a1d78236ca3e9f6c788786e21f5a651a6/nacl-fast.js
+// Modified in 2024 by Chris Duncan to eliminate dependencies, port to
+// TypeScript, and bundle into web workers.
+// Original source commit: https://github.com/emilbayes/blake2b/blob/1f63e02e3f226642959506cdaa67c8819ff145cd/index.js
 
 var assert = require('nanoassert')
 var b2wasm = require('blake2b-wasm')
-- 
2.34.1