fix: Remove copy/paste leftover in syntax.md

This commit is contained in:
Nicolas Abril 2022-11-10 17:49:53 +01:00 committed by GitHub
parent a7650f37af
commit a4ae8db8c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -465,14 +465,6 @@ List.nil)
But underneath the hood, what an implicit argument actually does is automatically put holes in these places. But underneath the hood, what an implicit argument actually does is automatically put holes in these places.
Moreover, single holes can be shortened as `!`. So it can also be written as:
```
List.cons!(List.cons!(1, List.cons!(2, List.nil!)),
List.cons!(List.cons!(3, List.cons!(4, List.nil!)),
List.nil!))
```
Of course, in this particular example, we can just use the list notation directly: Of course, in this particular example, we can just use the list notation directly:
``` ```