File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ Highlights
9
9
Bug-fixes
10
10
---------
11
11
12
+ * Fix statement of ` Data.Vec.Properties.toList-replicate ` , where ` replicate `
13
+ was mistakenly applied to the level of the type ` A ` instead of the
14
+ variable ` x ` of type ` A ` .
15
+
12
16
Non-backwards compatible changes
13
17
--------------------------------
14
18
Original file line number Diff line number Diff line change @@ -1144,7 +1144,7 @@ zipWith-replicate₂ _⊕_ (x ∷ xs) y =
1144
1144
cong (x ⊕ y ∷_) (zipWith-replicate₂ _⊕_ xs y)
1145
1145
1146
1146
toList-replicate : ∀ (n : ℕ) (x : A) →
1147
- toList (replicate n a ) ≡ List.replicate n a
1147
+ toList (replicate n x ) ≡ List.replicate n x
1148
1148
toList-replicate zero x = refl
1149
1149
toList-replicate (suc n) x = cong (_ List.∷_) (toList-replicate n x)
1150
1150
You can’t perform that action at this time.
0 commit comments