Skip to content

Commit 31f5de0

Browse files
RexJaeschkeBillWagner
authored andcommitted
fix md formatting
1 parent 87ead75 commit 31f5de0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

standard/lexical-structure.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -979,11 +979,11 @@ For brevity, a *Raw_String_Literal_Delimiter* is referred to as a “delimiter,
979979
For any *Raw_String_Literal*:
980980

981981
- A delimiter shall be the longest set of contiguous `"` characters found at the start or end. The number of `"` characters in a delimiter is called the ***raw string literal delimiter length***.
982-
> *Example*: The string `""" """` is well-formed; it has 3-character start and end delimiters, and its content is a single space. However, the string `""""""` is ill-formed, as it is seen as a 6-character start delimiter, with no content, and no end delimiter, not as 3-character start and end delimiters and empty content. *end example*
983-
- The beginning and end delimiters shall have the same raw string literal delimiter length.
984-
> *Example*: The string `""""X""""` is well-formed; it has 4-character start and end delimiters. However, the strings `"""X""""` and `""""X"""` are ill-formed, as the start and end delimiters in each pair do not have the same length. *end example*
982+
> *Example*: The string `""" """` is well-formed; it has 3-character start and end delimiters, and its content is a single space. However, the string `""""""` is ill-formed, as it is seen as a 6-character start delimiter, with no content, and no end delimiter, not as 3-character start and end delimiters and empty content. *end example*
983+
- The beginning and end delimiters shall have the same raw string literal delimiter length.
984+
> *Example*: The string `""""X""""` is well-formed; it has 4-character start and end delimiters. However, the strings `"""X""""` and `""""X"""` are ill-formed, as the start and end delimiters in each pair do not have the same length. *end example*
985985
- A *Raw_String_Literal Content* shall not contain a set of contiguous `"` characters whose length is equal to or greater than the raw string literal delimiter length.
986-
> *Example*: The strings `"""" """ """"` and `""""""" """""" """"" """" """ """""""`are well-formed. However, the strings `""" """ """` and `""" """" """` are ill-formed. *end example*
986+
> *Example*: The strings `"""" """ """"` and `""""""" """""" """"" """" """ """""""`are well-formed. However, the strings `""" """ """` and `""" """" """` are ill-formed. *end example*
987987
- As text sequences that have the form of *Comment*s are not processed within string literals ([§6.3.3](lexical-structure.md#633-comments)), they appear verbatim in their corresponding *Raw_String_Literal Content*.
988988

989989
For a *Single_Line_Raw_String_Literal* only:
@@ -1099,7 +1099,7 @@ Each string literal does not necessarily result in a new string instance. When t
10991099
> object e = """
11001100
> hello
11011101
> """;
1102-
1102+
>
11031103
> System.Console.WriteLine(a == b);
11041104
> System.Console.WriteLine(a == c);
11051105
> System.Console.WriteLine(a == d);

0 commit comments

Comments
 (0)