Skip to content

Commit 59c140a

Browse files
yvtBillWagner
authored andcommitted
Fix inline code block (#5076)
* Fix inline code block It had to be surrounded by double backticks because it contains a backtick. * remove `\` per review
1 parent bed5b11 commit 59c140a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/programming-guide/xmldoc/processing-the-xml-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The compiler generates an ID string for each construct in your code that is tagg
7272

7373
- For generic types, the name of the type will be followed by a back tick and then a number that indicates the number of generic type parameters. For example,
7474

75-
`<member name="T:SampleClass`2">` is the tag for a type that is defined as `public class SampleClass\<T, U>`.
75+
``<member name="T:SampleClass`2">`` is the tag for a type that is defined as `public class SampleClass<T, U>`.
7676

7777
For methods taking generic types as parameters, the generic type parameters are specified as numbers prefaced with back ticks (for example \`0,`1). Each number representing a zero-based array notation for the type's generic parameters.
7878

0 commit comments

Comments
 (0)