Markdown formatting fix

The extra backtick caused formatting aberration in IOS Working Copy.
I checked for other groups of 4 (rg -F $four_backticks) and found none.
This commit is contained in:
windwardly 2021-11-26 15:00:02 -05:00 committed by GitHub
parent b342967a43
commit 76c2a4f5fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ If that looks alien to you, don't worry for now, it will become clear. The
```
Equal.refl : (A: Type) -> (x: A) -> Equal(A,x,x)
````
```
That means `refl` receives a type (`A`), and element `x` of type `A`, and
returns `Equal(A,x,x)`. As an example, the program below: