Skip to content

Commit 209b55b

Browse files
committed
quick fix
1 parent f8b2454 commit 209b55b

File tree

1 file changed

+1
-1
lines changed
  • docs/csharp/language-reference/xmldoc

1 file changed

+1
-1
lines changed

docs/csharp/language-reference/xmldoc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The use of XML doc comments requires delimiters that indicate where a documentat
9999
```
100100
<!-- markdownlint-enable MD010 -->
101101

102-
To refer to XML elements (for example, your function processes specific XML elements that you want to describe in an XML documentation comment), you can use the standard quoting mechanism (`<` and `>`). To refer to generic identifiers in code reference (`cref`) elements, you can use either the escape characters (for example, `cref="List&lt;T&gt;"`) or braces (`cref="List{T}"`). As a special case, the compiler parses the braces as angle brackets to make the documentation comment less cumbersome to author when referring to generic identifiers.
102+
To refer to XML elements (for example, your function processes specific XML elements that you want to describe in an XML documentation comment), you can use the standard quoting mechanism (`&lt;` and `&gt;`). To refer to generic identifiers in code reference (`cref`) elements, you can use either the escape characters (for example, `cref="List&lt;T&gt;"`) or braces (`cref="List{T}"`). As a special case, the compiler parses the braces as angle brackets to make the documentation comment less cumbersome to author when referring to generic identifiers.
103103

104104
> [!NOTE]
105105
> The XML documentation comments are not metadata; they are not included in the compiled assembly and therefore they are not accessible through reflection.

0 commit comments

Comments
 (0)