small stylistic changes

This commit is contained in:
Mitchell Hashimoto
2024-06-23 09:44:54 -07:00
parent 3b36dbb53e
commit eebc7d4c3a
4 changed files with 41 additions and 63 deletions

View File

@@ -46,7 +46,7 @@ pub fn CacheTable(
comptime bucket_size: u8,
) type {
return struct {
const Self = CacheTable(K, V, Context, bucket_count, bucket_size);
const Self = @This();
const KV = struct {
key: K,