From d05d016b866c40d14d9143b1e32765339442d88d Mon Sep 17 00:00:00 2001 From: Alexander McCord Date: Mon, 19 Feb 2024 22:10:50 -0800 Subject: [PATCH] Semi-colons and language standardized indentations. --- docs/syntax-leading-bar-and-ampersand.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/syntax-leading-bar-and-ampersand.md b/docs/syntax-leading-bar-and-ampersand.md index 45c3e54..f325cd0 100644 --- a/docs/syntax-leading-bar-and-ampersand.md +++ b/docs/syntax-leading-bar-and-ampersand.md @@ -19,7 +19,7 @@ type EnglishAlphabet = never | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" - | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z"; + | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" ``` Currently, there are two solutions to effect it: @@ -59,8 +59,8 @@ type 'a tree = ```ts type Tree = - | { type: "leaf" } - | { type: "node", left: Tree, value: T, right: Tree } + | { type: "leaf" } + | { type: "node", left: Tree, value: T, right: Tree }; ``` ## Design @@ -69,8 +69,8 @@ This type becomes valid Luau syntax. ```lua type Tree = - | { type: "leaf" } - | { type: "node", left: Tree, value: T, right: Tree } + | { type: "leaf" } + | { type: "node", left: Tree, value: T, right: Tree } ``` ## Drawbacks