Skip to content

Commit 4362219

Browse files
authored
fix: fix typo in inhabited instance for ExtDHashMap (#8349)
This PR fixes the signature of the intended `Inhabited` instance for `ExtDHashMap`.
1 parent 49369f9 commit 4362219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Std/Data/ExtDHashMap/Basic.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def emptyWithCapacity [BEq α] [Hashable α]
6969
instance [BEq α] [Hashable α] : EmptyCollection (ExtDHashMap α β) where
7070
emptyCollection := emptyWithCapacity
7171

72-
instance [BEq α] [Hashable α] : Inhabited (DHashMap α β) where
72+
instance [BEq α] [Hashable α] : Inhabited (ExtDHashMap α β) where
7373
default := ∅
7474

7575
@[inline, inherit_doc DHashMap.insert]

0 commit comments

Comments
 (0)