Skip to content

Commit 69ef0e7

Browse files
authored
Merge pull request #10938 from changeworld/patch-20
Fix typo: adminstrator -> administrator
2 parents af6b248 + ba46321 commit 69ef0e7

File tree

1 file changed

+1
-1
lines changed
  • docs/snippets/cpp/VS_Snippets_Winforms/Classic Application.ThreadException Example/CPP

1 file changed

+1
-1
lines changed

docs/snippets/cpp/VS_Snippets_Winforms/Classic Application.ThreadException Example/CPP/source.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public ref class Form1: public System::Windows::Forms::Form
7575
private:
7676
System::Windows::Forms::DialogResult ShowThreadExceptionDialog( Exception^ e )
7777
{
78-
String^ errorMsg = "An error occurred please contact the adminstrator with the following information:\n\n";
78+
String^ errorMsg = "An error occurred please contact the administrator with the following information:\n\n";
7979
errorMsg = String::Concat( errorMsg, e->Message, "\n\nStack Trace:\n", e->StackTrace );
8080
return MessageBox::Show( errorMsg, "Application Error", MessageBoxButtons::AbortRetryIgnore, MessageBoxIcon::Stop );
8181
}

0 commit comments

Comments
 (0)