Skip to content

Commit c623db7

Browse files
committed
Use correct constructor name
1 parent 48e6ef7 commit c623db7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vector/src/Data/Vector/Strict.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,9 @@ instance Exts.IsList (Vector a) where
252252

253253
instance Data a => Data (Vector a) where
254254
gfoldl = G.gfoldl
255-
toConstr _ = G.mkVecConstr "Data.Vector.Vector"
255+
toConstr _ = G.mkVecConstr "Data.Vector.Strict.Vector"
256256
gunfold = G.gunfold
257-
dataTypeOf _ = G.mkVecType "Data.Vector.Vector"
257+
dataTypeOf _ = G.mkVecType "Data.Vector.Strict.Vector"
258258
dataCast1 = G.dataCast
259259

260260
type instance G.Mutable Vector = MVector

0 commit comments

Comments
 (0)