Skip to content

Commit

Permalink
fix: move incorrectly placed closing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
paoda committed Jul 4, 2023
1 parent f8153f6 commit b0389bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trie.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b0389bb

Please sign in to comment.