mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 02:50:59 +01:00
Semi-colons and language standardized indentations.
This commit is contained in:
parent
3f89939bc5
commit
d05d016b86
1 changed files with 5 additions and 5 deletions
|
@ -19,7 +19,7 @@ type EnglishAlphabet = never
|
||||||
| "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m"
|
| "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"
|
||||||
| "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M"
|
| "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:
|
Currently, there are two solutions to effect it:
|
||||||
|
@ -59,8 +59,8 @@ type 'a tree =
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
type Tree<T> =
|
type Tree<T> =
|
||||||
| { type: "leaf" }
|
| { type: "leaf" }
|
||||||
| { type: "node", left: Tree<T>, value: T, right: Tree<T> }
|
| { type: "node", left: Tree<T>, value: T, right: Tree<T> };
|
||||||
```
|
```
|
||||||
|
|
||||||
## Design
|
## Design
|
||||||
|
@ -69,8 +69,8 @@ This type becomes valid Luau syntax.
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
type Tree<T> =
|
type Tree<T> =
|
||||||
| { type: "leaf" }
|
| { type: "leaf" }
|
||||||
| { type: "node", left: Tree<T>, value: T, right: Tree<T> }
|
| { type: "node", left: Tree<T>, value: T, right: Tree<T> }
|
||||||
```
|
```
|
||||||
|
|
||||||
## Drawbacks
|
## Drawbacks
|
||||||
|
|
Loading…
Add table
Reference in a new issue