Skip to content

Commit dcbff3f

Browse files
committed
fix bug in types at a glance: the block should have a semicolon instead of a comma
1 parent eee5970 commit dcbff3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/types_of_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ int
3131
| [Tables](#tables) | `[{x:12, y:15}, {x:8, y:9}]`, `[[x, y]; [12, 15], [8, 9]]` |
3232
| [Closures](#closures) | `{\|e\| $e + 1 \| into string }`, `{ $in.name.0 \| path exists }` |
3333
| [Cell-paths](#cell-paths) | `$.name.0` |
34-
| [Blocks](#blocks) | `if true { print "hello!" }`, `loop { print "press ctrl-c to exit" }` |
34+
| [Blocks](#blocks) | `if true { print "hello!" }`; `loop { print "press ctrl-c to exit" }` |
3535
| [Null (Nothing)](#nothing-null) | `null` |
3636
| [Any](#any) | `let p: any = 5` |
3737

0 commit comments

Comments
 (0)