Skip to content

Commit 18323c2

Browse files
author
Alex Gryzlov
committed
Merge branch 'develop' into logic
2 parents 2ae7861 + 431c2cb commit 18323c2

File tree

4 files changed

+1230
-3
lines changed

4 files changed

+1230
-3
lines changed

software_foundations.ipkg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ modules = Basics
44
, Induction
55
, Lists
66
, Poly
7+
, Tactics
78

89
brief = "Software Foundations in Idris"
910
version = 0.0.1.0
@@ -18,4 +19,4 @@ sourceloc = git://[email protected]:idris-hackers/software-foundations.git
1819
bugtracker = https://github.com/idris-hackers/software-foundations/issues
1920

2021
sourcedir = src
21-
opts = "--check --total"
22+
opts = "--check --total -p pruviloj"

src/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ LIDR_FILES := Preface.lidr \
1515
Basics.lidr \
1616
Induction.lidr \
1717
Lists.lidr \
18-
Poly.lidr
18+
Poly.lidr \
19+
Tactics.lidr
1920
# TODO: Add more chapters, in order, here.
2021

2122

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)