Skip to content

Commit fe79149

Browse files
committed
fix: update references from Blake3 to BLAKE3.
1 parent 6e33ca7 commit fe79149

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/BLAKE3/BLAKE3.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ public final class BLAKE3 {
6666
/// print(hash)
6767
/// ```
6868
public func finalizeBytes() -> [UInt8] {
69-
var out = [UInt8](repeating: 0, count: Blake3.BLAKE3_OUT_LENGTH)
70-
blake3_hasher_finalize(&hasher, &out, Blake3.BLAKE3_OUT_LENGTH)
69+
var out = [UInt8](repeating: 0, count: BLAKE3.BLAKE3_OUT_LENGTH)
70+
blake3_hasher_finalize(&hasher, &out, BLAKE3.BLAKE3_OUT_LENGTH)
7171
return out
7272
}
7373

0 commit comments

Comments
 (0)