mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-04 10:30:56 +01:00
Little grammar error.
This commit is contained in:
parent
b4988cd9db
commit
3f89939bc5
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ Allow the use of `|` and `&` without any types preceding them.
|
|||
|
||||
## Motivation
|
||||
|
||||
Occasionally, you will have many different types in a union or intersection types that exceeds a reasonable line limit and end up formatting it to avoid horizontal scrolling. Using the English alphabet as an example:
|
||||
Occasionally, you will have many different types in a union or intersection type that exceeds a reasonable line limit and end up formatting it to avoid horizontal scrolling. Using the English alphabet as an example:
|
||||
|
||||
```lua
|
||||
type EnglishAlphabet = "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"
|
||||
|
|
Loading…
Add table
Reference in a new issue