Skip to content

Commit cabbf59

Browse files
authored
add chevron color delimiters (#554)
1 parent 725a1b0 commit cabbf59

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

standard/expressions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1524,22 +1524,22 @@ In a member access of the form `E.I`, if `E` is a single identifier, and if the
15241524
>
15251525
> class A
15261526
> {
1527-
> public Color Color; // Field Color of type Color
1527+
> public «Color» Color; // Field Color of type Color
15281528
>
15291529
> void F()
15301530
> {
1531-
> Color = Color.Black; // Refers to Color.Black static member
1531+
> Color = «Color».Black; // Refers to Color.Black static member
15321532
> Color = Color.Complement(); // Invokes Complement() on Color field
15331533
> }
15341534
>
15351535
> static void G()
15361536
> {
1537-
> Color c = Color.White; // Refers to Color.White static member
1537+
> «Color» c = «Color».White; // Refers to Color.White static member
15381538
> }
15391539
> }
15401540
> ```
15411541
>
1542-
> Within the `A` class, those occurrences of the Color identifier that reference the Color type are delimited by `**`, and those that reference the Color field are not.
1542+
> For expository purposes only, within the `A` class, those occurrences of the `Color` identifier that reference the `Color` type are delimited by `«...»`, and those that reference the `Color` field are not.
15431543
>
15441544
> *end example*
15451545

0 commit comments

Comments
 (0)