Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/PerfView/Dialogs/UnhandledExceptionDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ public UnhandledExceptionDialog(Window parentWindow, object exception) : base(pa
{
InitializeComponent();

string reporting = "The fact that this exception went unhanded is a programmer error. It should be reported "
string reporting = "The fact that this exception went unhandled is a programmer error. It should be reported "
+ "so it can be fixed. Please set along the following stack trace information which will be "
+ "useful in diagnosing the problem.\r\n";

Body.Text = "An unhanded exception occured.\r\n"
Body.Text = "An unhandled exception occurred.\r\n"
+ "\r\n"
+ "At this point you can opt to continue, however it is possible that the aborted computation will "
+ "cause additional failures. Because PerfView generally only opens files for reading, there is no "
Expand Down