Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vector/src/Data/Vector.hs
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ createT p = G.createT p
-- ------------------------

-- | /O(n)/ Yield the argument, but force it not to retain any extra memory,
-- possibly by copying it.
-- by copying it.
--
-- This is especially useful when dealing with slices. For example:
--
Expand Down
2 changes: 1 addition & 1 deletion vector/src/Data/Vector/Generic.hs
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ createT p = runST (p >>= T.mapM unsafeFreeze)
-- ------------------------

-- | /O(n)/ Yield the argument, but force it not to retain any extra memory,
-- possibly by copying it.
-- by copying it.
--
-- This is especially useful when dealing with slices. For example:
--
Expand Down
2 changes: 1 addition & 1 deletion vector/src/Data/Vector/Primitive.hs
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ createT p = G.createT p
-- ------------------------

-- | /O(n)/ Yield the argument, but force it not to retain any extra memory,
-- possibly by copying it.
-- by copying it.
--
-- This is especially useful when dealing with slices. For example:
--
Expand Down
2 changes: 1 addition & 1 deletion vector/src/Data/Vector/Storable.hs
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ createT p = G.createT p
-- ------------------------

-- | /O(n)/ Yield the argument, but force it not to retain any extra memory,
-- possibly by copying it.
-- by copying it.
--
-- This is especially useful when dealing with slices. For example:
--
Expand Down
2 changes: 1 addition & 1 deletion vector/src/Data/Vector/Strict.hs
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ createT p = G.createT p
-- ------------------------

-- | /O(n)/ Yield the argument, but force it not to retain any extra memory,
-- possibly by copying it.
-- by copying it.
--
-- This is especially useful when dealing with slices. For example:
--
Expand Down
2 changes: 1 addition & 1 deletion vector/src/Data/Vector/Unboxed.hs
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ createT p = G.createT p
-- ------------------------

-- | /O(n)/ Yield the argument, but force it not to retain any extra memory,
-- possibly by copying it.
-- by copying it.
--
-- This is especially useful when dealing with slices. For example:
--
Expand Down
Loading