Skip to content

Commit 64b265e

Browse files
committed
Fix warnings
1 parent 648c9aa commit 64b265e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

xml/System.Diagnostics/Debugger.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Console.WriteLine("Hello, world.");
226226
<format type="text/markdown"><![CDATA[
227227
228228
## Remarks
229-
This API is designed to be used with <xref:System.Diagnostics.DebuggerDisableUserUnhandledExceptions>. If a .NET debugger is attached and the debugger supports breaking on user-unhandled exceptions, this method signals a breakpoint to the debugger with the <paramref name="exception" />
229+
This API is designed to be used with <xref:System.Diagnostics.DebuggerDisableUserUnhandledExceptionsAttribute>. If a .NET debugger is attached and the debugger supports breaking on user-unhandled exceptions, this method signals a breakpoint to the debugger with the `exception` parameter. />
230230
]]></format>
231231
</remarks>
232232
</Docs>

xml/System.Diagnostics/DebuggerDisableUserUnhandledExceptionsAttribute.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<format type="text/markdown"><![CDATA[
2828
2929
## Remarks
30-
Visual Studio has added support for catching asynchronous user-unhandled exceptions and is enabled by default. This feature has existed for a long time for synchronous methods, but not for async / await methods. The BreakForUserUnhandledException disables the feature for specific methods. This is useful for exceptions that propagate through user code but are expected to be handled by framework code. This attribute is designed to be used along with <xref:System.Diagnostics.Debugger.BreakForUserUnhandledException>.
30+
Visual Studio has added support for catching asynchronous user-unhandled exceptions and is enabled by default. This feature has existed for a long time for synchronous methods, but not for async / await methods. The BreakForUserUnhandledException disables the feature for specific methods. This is useful for exceptions that propagate through user code but are expected to be handled by framework code. This attribute is designed to be used along with <xref:System.Diagnostics.Debugger.BreakForUserUnhandledException(System.Exception)>.
3131
3232
## Example
3333

0 commit comments

Comments
 (0)