fix typo in previous commit

oops, forgot to actually run the test
This commit is contained in:
Andrew Kelley 2020-02-25 21:32:03 -05:00
parent e75598af3d
commit a55e536391
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

@ -17,7 +17,7 @@ const S = struct {
a: u32,
b: Map,
const Map = std.StringHashMap(*S);
const Map = StringHashMap(*S);
};
pub fn StringHashMap(comptime V: type) type {