Skip to content

Commit c3cd929

Browse files
Copilotgewarren
andcommitted
Fix XML documentation: replace backticks with proper c tags
Co-authored-by: gewarren <24882762+gewarren@users.noreply.github.com>
1 parent 3feffea commit c3cd929

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/coreclr/System.Private.CoreLib/src/System/Reflection/Emit/DynamicILGenerator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ public unsafe void SetCode(byte* code, int codeSize, int maxStackSize)
939939
/// </summary>
940940
/// <param name="exceptions">An array that contains the exception metadata.</param>
941941
/// <remarks>
942-
/// The exception metadata for a method defines the location and size of all `try`, `catch`, `finally`, filter, and fault blocks. For information on the layout of this metadata, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics". For more information, see <see href="https://www.ecma-international.org/publications-and-standards/standards/ecma-335/">ECMA 335 Common Language Infrastructure (CLI)</see>.
942+
/// The exception metadata for a method defines the location and size of all <c>try</c>, <c>catch</c>, <c>finally</c>, filter, and fault blocks. For information on the layout of this metadata, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics". For more information, see <see href="https://www.ecma-international.org/publications-and-standards/standards/ecma-335/">ECMA 335 Common Language Infrastructure (CLI)</see>.
943943
/// </remarks>
944944
public void SetExceptions(byte[]? exceptions)
945945
{
@@ -952,7 +952,7 @@ public void SetExceptions(byte[]? exceptions)
952952
/// <param name="exceptions">A pointer to a byte array containing the exception metadata.</param>
953953
/// <param name="exceptionsSize">The number of bytes of exception metadata.</param>
954954
/// <remarks>
955-
/// The exception metadata for a method defines the location and size of all `try`, `catch`, `finally`, filter, and fault blocks. For information on the layout of this metadata, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics" and "Partition III: CIL Instruction Set". For more information, see <see href="https://www.ecma-international.org/publications-and-standards/standards/ecma-335/">ECMA 335 Common Language Infrastructure (CLI)</see>.
955+
/// The exception metadata for a method defines the location and size of all <c>try</c>, <c>catch</c>, <c>finally</c>, filter, and fault blocks. For information on the layout of this metadata, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics" and "Partition III: CIL Instruction Set". For more information, see <see href="https://www.ecma-international.org/publications-and-standards/standards/ecma-335/">ECMA 335 Common Language Infrastructure (CLI)</see>.
956956
/// </remarks>
957957
/// <exception cref="ArgumentNullException"><paramref name="exceptions" /> is <see langword="null" /> and <paramref name="exceptionsSize" /> is greater than 0.</exception>
958958
/// <exception cref="ArgumentOutOfRangeException"><paramref name="exceptionsSize" /> is less than 0.</exception>

0 commit comments

Comments
 (0)