fix: move incorrectly placed closing bracket
This commit is contained in:
parent
f8153f6569
commit
b0389bb1a4
|
@ -15,7 +15,7 @@ pub fn HashArrayMappedTrie(comptime K: type, comptime V: type, comptime Context:
|
|||
|
||||
const Digest = Context.Digest; // as in Hash Code or Hash Digest
|
||||
const table_size = @typeInfo(Digest).Int.bits;
|
||||
const t: Log2Int(Digest) = @intCast(@typeInfo(Log2Int(Digest).Int.bits));
|
||||
const t: Log2Int(Digest) = @intCast(@typeInfo(Log2Int(Digest)).Int.bits);
|
||||
|
||||
free_list: FreeList,
|
||||
root: []?*Node,
|
||||
|
|
Loading…
Reference in New Issue