Update Tutorial: add spaces before colons

Signed-off-by: human154 <46430360+human154@users.noreply.github.com>
This commit is contained in:
human154 2023-03-10 15:13:19 -05:00 committed by GitHub
parent 24c7bded35
commit b077e76235
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -446,10 +446,10 @@ Here's the type of `table`:
```roc
table :
{
height: Pixels,
width: Pixels,
title? Str,
description? Str,
height : Pixels,
width : Pixels,
title ? Str,
description ? Str,
}
-> Table
```