Fix typo: argument to arguments

This commit is contained in:
Mo Mirza 2019-09-11 00:32:52 +01:00 committed by GitHub
parent 4841f3d879
commit 5ae3b56ccc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;