Skip to content

Commit f6be960

Browse files
Added backticks
1 parent e8c9a0c commit f6be960

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/identifiers.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ An identifier is any nonempty Unicode[^non_ascii_idents] string of the following
44

55
Either
66

7-
* The first character has property [XID_start]
8-
* The remaining characters have property [XID_continue]
7+
* The first character has property [`XID_start`]
8+
* The remaining characters have property [`XID_continue`]
99

1010
Or
1111

1212
* The first character is `_`
1313
* The identifier is more than one character, `_` alone is not an identifier
14-
* The remaining characters have property [XID_continue]
14+
* The remaining characters have property [`XID_continue`]
1515

1616
that does _not_ occur in the set of [keywords].
1717

18-
> **Note**: [XID_start] and [XID_continue] as character properties cover the
18+
> **Note**: [`XID_start`] and [`XID_continue`] as character properties cover the
1919
> character ranges used to form the more familiar C and Java language-family
2020
> identifiers.
2121
2222

2323

24-
[XID_start]: http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3AXID_Start%3A%5D&abb=on&g=&i=
25-
[XID_continue]: http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3AXID_Continue%3A%5D&abb=on&g=&i=
24+
[`XID_start`]: http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3AXID_Start%3A%5D&abb=on&g=&i=
25+
[`XID_continue`]: http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5B%3AXID_Continue%3A%5D&abb=on&g=&i=
2626
[keywords]: ../grammar.html#keywords
2727
[^non_ascii_idents]: Non-ASCII characters in identifiers are currently feature
2828
gated. This is expected to improve soon.

0 commit comments

Comments
 (0)