Skip to content

Commit cd4e6b0

Browse files
committed
Fix grammar typo
1 parent 9796604 commit cd4e6b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wx/map_export_dialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ void MapExportDialog::OnOk(wxCommandEvent &event)
138138

139139
if (!fs::exists(path))
140140
{
141-
if (wxMessageBox(wxString::FromUTF8(string("The folder does not exists: ") + getPath() + "\nDo you want to create it?"), wxT("Warning"), wxICON_WARNING | wxYES_NO) == wxYES) {
141+
if (wxMessageBox(wxString::FromUTF8(string("The folder does not exist: ") + getPath() + "\nDo you want to create it?"), wxT("Warning"), wxICON_WARNING | wxYES_NO) == wxYES) {
142142
fs::create_directories(path);
143143
} else {
144144
return;

0 commit comments

Comments
 (0)