Fix typo: argument to arguments
This commit is contained in:
parent
4841f3d879
commit
5ae3b56ccc
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ zero + n = n
|
|||
```
|
||||
|
||||
Let's unpack this definition. Addition is an infix operator. It is
|
||||
written with underbars where the argument go, hence its name is
|
||||
written with underbars where the arguments go, hence its name is
|
||||
`_+_`. The first line is a signature specifying the type of the operator.
|
||||
The type `ℕ → ℕ → ℕ`, indicates that addition accepts two naturals
|
||||
and returns a natural. Infix notation is just a shorthand for application;
|
||||
|
|
Loading…
Reference in a new issue