We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68530e4 commit 4061db3Copy full SHA for 4061db3
src/Makefile
@@ -16,7 +16,7 @@ LIDR_FILES := Preface.lidr \
16
Induction.lidr \
17
Lists.lidr \
18
Poly.lidr \
19
- Tactics.lidr
+ Tactics.lidr
20
# TODO: Add more chapters, in order, here.
21
22
src/Poly.lidr
@@ -293,7 +293,7 @@ polymorphic lists...
293
> app Nil l2 = l2
294
> app (h::t) l2 = h :: app t l2
295
296
-> rev : (l: List x) -> List x
+> rev : (l : List x) -> List x
297
> rev [] = []
298
> rev (h::t) = app (rev t) (h::Nil)
299
0 commit comments