Skip to content

Commit 6b8bbc3

Browse files
authored
Merge pull request #490 from hidewrong/master
chore: remove repetitive words
2 parents 219b33f + 4c3b2da commit 6b8bbc3

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

vector/src/Data/Vector.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ accumulate :: (a -> b -> a) -- ^ accumulating function @f@
998998
accumulate = G.accumulate
999999

10001000
-- | /O(m+min(n1,n2))/ For each index @i@ from the index vector and the
1001-
-- corresponding value @b@ from the the value vector,
1001+
-- corresponding value @b@ from the value vector,
10021002
-- replace the element of the initial vector at
10031003
-- position @i@ by @f a b@.
10041004
--

vector/src/Data/Vector/Generic.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ accumulate :: (Vector v a, Vector v (Int, b))
926926
accumulate f v us = accum_stream f v (stream us)
927927

928928
-- | /O(m+min(n1,n2))/ For each index @i@ from the index vector and the
929-
-- corresponding value @b@ from the the value vector,
929+
-- corresponding value @b@ from the value vector,
930930
-- replace the element of the initial vector at
931931
-- position @i@ by @f a b@.
932932
--

vector/src/Data/Vector/Primitive.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ accum :: Prim a
802802
accum = G.accum
803803

804804
-- | /O(m+min(n1,n2))/ For each index @i@ from the index vector and the
805-
-- corresponding value @b@ from the the value vector,
805+
-- corresponding value @b@ from the value vector,
806806
-- replace the element of the initial vector at
807807
-- position @i@ by @f a b@.
808808
--

vector/src/Data/Vector/Storable.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ accum :: Storable a
813813
accum = G.accum
814814

815815
-- | /O(m+min(n1,n2))/ For each index @i@ from the index vector and the
816-
-- corresponding value @b@ from the the value vector,
816+
-- corresponding value @b@ from the value vector,
817817
-- replace the element of the initial vector at
818818
-- position @i@ by @f a b@.
819819
--

vector/src/Data/Vector/Strict.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ accumulate :: (a -> b -> a) -- ^ accumulating function @f@
10521052
accumulate = G.accumulate
10531053

10541054
-- | /O(m+min(n1,n2))/ For each index @i@ from the index vector and the
1055-
-- corresponding value @b@ from the the value vector,
1055+
-- corresponding value @b@ from the value vector,
10561056
-- replace the element of the initial vector at
10571057
-- position @i@ by @f a b@.
10581058
--

vector/src/Data/Vector/Unboxed.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ accumulate :: (Unbox a, Unbox b)
808808
accumulate = G.accumulate
809809

810810
-- | /O(m+min(n1,n2))/ For each index @i@ from the index vector and the
811-
-- corresponding value @b@ from the the value vector,
811+
-- corresponding value @b@ from the value vector,
812812
-- replace the element of the initial vector at
813813
-- position @i@ by @f a b@.
814814
--

0 commit comments

Comments
 (0)