Remove typo from Elm guide

This part confused me when reading through the guide, but now it makes senes.

Not sure if the flow of the text makes sense now though, as this same example is repeated twice in a row:

```elm
{ name : Str, email : Str }* -> Str
```
This commit is contained in:
Tarjei Skjærset 2021-05-12 09:29:04 +02:00 committed by GitHub
parent 92f3a62cfa
commit 7a878493bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -209,7 +209,7 @@ In Elm:
In Roc:
```
{ x : name : Str, email : Str }* -> Str
{ name : Str, email : Str }* -> Str
```
Here, the open record's type variable appears immediately after the `}`.