From c561ae51b1a283f825b74e1c5f0368ee1d247fa8 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 31 Mar 2022 10:51:18 -0700 Subject: [PATCH] Update docs/_pages/typecheck.md --- docs/_pages/typecheck.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_pages/typecheck.md b/docs/_pages/typecheck.md index af7cea96..9443f112 100644 --- a/docs/_pages/typecheck.md +++ b/docs/_pages/typecheck.md @@ -380,7 +380,7 @@ local account: Account = Account.new("Alexander", 500) ## Tagged unions -Tagged unions are just unions types! In particular, they're union types of tables where they have at least _some_ common properties but the structure of the tables are different enough. Here's one example: +Tagged unions are just union types! In particular, they're union types of tables where they have at least _some_ common properties but the structure of the tables are different enough. Here's one example: ```lua type Result = { type: "ok", value: T } | { type: "err", error: E }