Skip to content

Commit 9cb166b

Browse files
committed
Fix a few minor typos
1 parent f2d1b45 commit 9cb166b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Tutorial/Intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Welcome to my Idris 2 tutorial. I'll try and treat as many aspects
44
of the Idris 2 programming language as possible here.
5-
All `.md` files in here a literate Idris files: They consist of
5+
All `.md` files in here are literate Idris files: They consist of
66
Markdown (hence the `.md` ending), which is being pretty printed
77
by GitHub together with Idris code blocks, which can be
88
type checked and built by the Idris compiler (more on this later).
@@ -90,7 +90,7 @@ There are, of course, also some disadvantages:
9090
### Dependent Types
9191

9292
Idris is a strongly, statically typed programming language. This
93-
means, that every Idris expression is given a *type* (for instance:
93+
means that every Idris expression is given a *type* (for instance:
9494
integer, list of strings, boolean, function from integer to boolean, etc.)
9595
and types are verified at compile time to rule out certain
9696
common programming errors.
@@ -270,7 +270,7 @@ maxBits8 = 255
270270

271271
The first line can be read as: "We'd like to declare (nullary)
272272
function `maxBits8`. It is of type `Bits8`". This is
273-
called the *function declaration*: We declare, that there
273+
called the *function declaration*: we declare that there
274274
shall be a function of the given name and type. The second line
275275
reads: "The result of invoking `maxBits8` should be `255`."
276276
(As you can see, we can use integer literals for other integral

0 commit comments

Comments
 (0)