Skip to content

Commit 757d01d

Browse files
smartersjrd
authored andcommitted
docs: Replace … by ...
This is the same change already applied to docs/_spec in 38e79aa, made here to make it easier to port changes between docs/_docs and doc/_spec.
1 parent 038dc9c commit 757d01d

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

docs/_docs/internals/syntax-3.1.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ hexadecimal code:
1111

1212
```ebnf
1313
UnicodeEscape ::= ‘\’ ‘u’ {‘u’} hexDigit hexDigit hexDigit hexDigit
14-
hexDigit ::= ‘0’ | | ‘9’ | ‘A’ | | ‘F’ | ‘a’ | | ‘f’
14+
hexDigit ::= ‘0’ | ... | ‘9’ | ‘A’ | ... | ‘F’ | ‘a’ | ... | ‘f’
1515
```
1616

1717
Informal descriptions are typeset as `“some comment”`.
@@ -22,15 +22,15 @@ form.
2222

2323
```ebnf
2424
whiteSpace ::= ‘\u0020’ | ‘\u0009’ | ‘\u000D’ | ‘\u000A’
25-
upper ::= ‘A’ | | ‘Z’ | ‘\$’ | ‘_’ “ and Unicode category Lu”
26-
lower ::= ‘a’ | | ‘z’ “ and Unicode category Ll”
27-
letter ::= upper | lower “ and Unicode categories Lo, Lt, Lm, Nl”
28-
digit ::= ‘0’ | | ‘9’
25+
upper ::= ‘A’ | ... | ‘Z’ | ‘\$’ | ‘_’ “... and Unicode category Lu”
26+
lower ::= ‘a’ | ... | ‘z’ “... and Unicode category Ll”
27+
letter ::= upper | lower “... and Unicode categories Lo, Lt, Lm, Nl”
28+
digit ::= ‘0’ | ... | ‘9’
2929
paren ::= ‘(’ | ‘)’ | ‘[’ | ‘]’ | ‘{’ | ‘}’ | ‘'(’ | ‘'[’ | ‘'{’
3030
delim ::= ‘`’ | ‘'’ | ‘"’ | ‘.’ | ‘;’ | ‘,’
3131
opchar ::= ‘!’ | ‘#’ | ‘%’ | ‘&’ | ‘*’ | ‘+’ | ‘-’ | ‘/’ | ‘:’ |
3232
‘<’ | ‘=’ | ‘>’ | ‘?’ | ‘@’ | ‘\’ | ‘^’ | ‘|’ | ‘~’
33-
and Unicode categories Sm, So”
33+
... and Unicode categories Sm, So”
3434
printableChar ::= “all characters in [\u0020, \u007E] inclusive”
3535
charEscapeSeq ::= ‘\’ (‘b’ | ‘t’ | ‘n’ | ‘f’ | ‘r’ | ‘"’ | ‘'’ | ‘\’)
3636
@@ -49,7 +49,7 @@ integerLiteral ::= (decimalNumeral | hexNumeral) [‘L’ | ‘l’]
4949
decimalNumeral ::= ‘0’ | nonZeroDigit {digit}
5050
hexNumeral ::= ‘0’ (‘x’ | ‘X’) hexDigit {hexDigit}
5151
digit ::= ‘0’ | nonZeroDigit
52-
nonZeroDigit ::= ‘1’ | | ‘9’
52+
nonZeroDigit ::= ‘1’ | ... | ‘9’
5353
5454
floatingPointLiteral
5555
::= digit {digit} ‘.’ {digit} [exponentPart] [floatType]

docs/_docs/internals/syntax.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ hexadecimal code:
2525

2626
```ebnf
2727
UnicodeEscape ::= ‘\’ ‘u’ {‘u’} hexDigit hexDigit hexDigit hexDigit
28-
hexDigit ::= ‘0’ | | ‘9’ | ‘A’ | | ‘F’ | ‘a’ | | ‘f’
28+
hexDigit ::= ‘0’ | ... | ‘9’ | ‘A’ | ... | ‘F’ | ‘a’ | ... | ‘f’
2929
```
3030

3131
Informal descriptions are typeset as `“some comment”`.
@@ -37,15 +37,15 @@ form.
3737

3838
```ebnf
3939
whiteSpace ::= ‘\u0020’ | ‘\u0009’ | ‘\u000D’ | ‘\u000A’
40-
upper ::= ‘A’ | | ‘Z’ | ‘\$’ | ‘_’ “ and Unicode category Lu”
41-
lower ::= ‘a’ | | ‘z’ “ and Unicode category Ll”
42-
letter ::= upper | lower “ and Unicode categories Lo, Lt, Lm, Nl”
43-
digit ::= ‘0’ | | ‘9’
40+
upper ::= ‘A’ | ... | ‘Z’ | ‘\$’ | ‘_’ “... and Unicode category Lu”
41+
lower ::= ‘a’ | ... | ‘z’ “... and Unicode category Ll”
42+
letter ::= upper | lower “... and Unicode categories Lo, Lt, Lm, Nl”
43+
digit ::= ‘0’ | ... | ‘9’
4444
paren ::= ‘(’ | ‘)’ | ‘[’ | ‘]’ | ‘{’ | ‘}’
4545
delim ::= ‘`’ | ‘'’ | ‘"’ | ‘.’ | ‘;’ | ‘,’
4646
opchar ::= ‘!’ | ‘#’ | ‘%’ | ‘&’ | ‘*’ | ‘+’ | ‘-’ | ‘/’ | ‘:’ |
4747
‘<’ | ‘=’ | ‘>’ | ‘?’ | ‘@’ | ‘\’ | ‘^’ | ‘|’ | ‘~’
48-
and Unicode categories Sm, So”
48+
... and Unicode categories Sm, So”
4949
printableChar ::= “all characters in [\u0020, \u007E] inclusive”
5050
charEscapeSeq ::= ‘\’ (‘b’ | ‘t’ | ‘n’ | ‘f’ | ‘r’ | ‘"’ | ‘'’ | ‘\’)
5151
@@ -64,7 +64,7 @@ spliceId ::= ‘$’ alphaid ;
6464
integerLiteral ::= (decimalNumeral | hexNumeral) [‘L’ | ‘l’]
6565
decimalNumeral ::= ‘0’ | nonZeroDigit [{digit | ‘_’} digit]
6666
hexNumeral ::= ‘0’ (‘x’ | ‘X’) hexDigit [{hexDigit | ‘_’} hexDigit]
67-
nonZeroDigit ::= ‘1’ | | ‘9’
67+
nonZeroDigit ::= ‘1’ | ... | ‘9’
6868
6969
floatingPointLiteral
7070
::= [decimalNumeral] ‘.’ digit [{digit | ‘_’} digit] [exponentPart] [floatType]

docs/_docs/reference/changed-features/overload-resolution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ as follows:
6666

6767
Replace the sentence
6868

69-
> Otherwise, let `S1,,Sm` be the vector of types obtained by typing each argument with an undefined expected type.
69+
> Otherwise, let `S1,...,Sm` be the vector of types obtained by typing each argument with an undefined expected type.
7070
7171
with the following paragraph:
7272

73-
> Otherwise, let `S1,,Sm` be the vector of known types of all argument types, where the _known type_ of an argument `E`
73+
> Otherwise, let `S1,...,Sm` be the vector of known types of all argument types, where the _known type_ of an argument `E`
7474
is determined as followed:
7575

7676
- If `E` is a function value `(p_1, ..., p_n) => B` that misses some parameter types, the known type

docs/_docs/reference/syntax.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ hexadecimal code:
2626

2727
```
2828
UnicodeEscape ::= ‘\’ ‘u’ {‘u’} hexDigit hexDigit hexDigit hexDigit
29-
hexDigit ::= ‘0’ | | ‘9’ | ‘A’ | | ‘F’ | ‘a’ | | ‘f’
29+
hexDigit ::= ‘0’ | ... | ‘9’ | ‘A’ | ... | ‘F’ | ‘a’ | ... | ‘f’
3030
```
3131

3232
Informal descriptions are typeset as `“some comment”`.
@@ -38,15 +38,15 @@ form.
3838

3939
```
4040
whiteSpace ::= ‘\u0020’ | ‘\u0009’ | ‘\u000D’ | ‘\u000A’
41-
upper ::= ‘A’ | | ‘Z’ | ‘\$’ | ‘_’ “ and Unicode category Lu”
42-
lower ::= ‘a’ | | ‘z’ “ and Unicode category Ll”
43-
letter ::= upper | lower “ and Unicode categories Lo, Lt, Nl”
44-
digit ::= ‘0’ | | ‘9’
41+
upper ::= ‘A’ | ... | ‘Z’ | ‘\$’ | ‘_’ “... and Unicode category Lu”
42+
lower ::= ‘a’ | ... | ‘z’ “... and Unicode category Ll”
43+
letter ::= upper | lower “... and Unicode categories Lo, Lt, Nl”
44+
digit ::= ‘0’ | ... | ‘9’
4545
paren ::= ‘(’ | ‘)’ | ‘[’ | ‘]’ | ‘{’ | ‘}’
4646
delim ::= ‘`’ | ‘'’ | ‘"’ | ‘.’ | ‘;’ | ‘,’
4747
opchar ::= ‘!’ | ‘#’ | ‘%’ | ‘&’ | ‘*’ | ‘+’ | ‘-’ | ‘/’ | ‘:’ |
4848
‘<’ | ‘=’ | ‘>’ | ‘?’ | ‘@’ | ‘\’ | ‘^’ | ‘|’ | ‘~’
49-
and Unicode categories Sm, So”
49+
... and Unicode categories Sm, So”
5050
printableChar ::= “all characters in [\u0020, \u007E] inclusive”
5151
charEscapeSeq ::= ‘\’ (‘b’ | ‘t’ | ‘n’ | ‘f’ | ‘r’ | ‘"’ | ‘'’ | ‘\’)
5252
@@ -65,7 +65,7 @@ spliceId ::= ‘$’ alphaid ;
6565
integerLiteral ::= (decimalNumeral | hexNumeral) [‘L’ | ‘l’]
6666
decimalNumeral ::= ‘0’ | nonZeroDigit [{digit | ‘_’} digit]
6767
hexNumeral ::= ‘0’ (‘x’ | ‘X’) hexDigit [{hexDigit | ‘_’} hexDigit]
68-
nonZeroDigit ::= ‘1’ | | ‘9’
68+
nonZeroDigit ::= ‘1’ | ... | ‘9’
6969
7070
floatingPointLiteral
7171
::= [decimalNumeral] ‘.’ digit [{digit | ‘_’} digit] [exponentPart] [floatType]

0 commit comments

Comments
 (0)