fix: move incorrectly placed closing bracket

This commit is contained in:
Rekai Nyangadzayi Musuka 2023-07-04 01:16:29 -05:00
parent f8153f6569
commit b0389bb1a4
1 changed files with 1 additions and 1 deletions

View File

@ -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,