Fix misspellings in comments and documentation

No real changes.

Closes https://github.com/wxWidgets/wxWidgets/pull/870
This commit is contained in:
Blake-Eryx
2018-07-31 13:16:40 +02:00
committed by Vadim Zeitlin
parent 11e6a40a97
commit 49e20a961d
19 changed files with 28 additions and 28 deletions

View File

@@ -290,7 +290,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
// So far we assumed that label doesn't contain mnemonic
// and therefore single underscore characters were not
// replaced by two underscores. Now we have to double
// all exisiting underscore characters.
// all existing underscore characters.
label.Replace(wxS("_"), wxS("__"));
label += wxS('_');
}