Skip to content

Commit 4061db3

Browse files
author
Alex Gryzlov
committed
edit whitespace
1 parent 68530e4 commit 4061db3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ LIDR_FILES := Preface.lidr \
1616
Induction.lidr \
1717
Lists.lidr \
1818
Poly.lidr \
19-
Tactics.lidr
19+
Tactics.lidr
2020
# TODO: Add more chapters, in order, here.
2121

2222

src/Poly.lidr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ polymorphic lists...
293293
> app Nil l2 = l2
294294
> app (h::t) l2 = h :: app t l2
295295

296-
> rev : (l: List x) -> List x
296+
> rev : (l : List x) -> List x
297297
> rev [] = []
298298
> rev (h::t) = app (rev t) (h::Nil)
299299

0 commit comments

Comments
 (0)