kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #34317
[PATCH 8/8] fix misspelled 'Unkown' -> 'Unknown'
From: Carsten Schoenert <c.schoenert@xxxxxxxxxxx>
---
eeschema/drc_erc_item.cpp | 2 +-
pcbnew/pcbnew_config.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/eeschema/drc_erc_item.cpp b/eeschema/drc_erc_item.cpp
index b5fe9b1d6..15a893cca 100644
--- a/eeschema/drc_erc_item.cpp
+++ b/eeschema/drc_erc_item.cpp
@@ -63,7 +63,7 @@ wxString DRC_ITEM::GetErrorText() const
default:
wxFAIL_MSG( "Missing ERC error description" );
- return wxString( wxT("Unkown.") );
+ return wxString( wxT("Unknown.") );
}
}
diff --git a/pcbnew/pcbnew_config.cpp b/pcbnew/pcbnew_config.cpp
index 154058480..1d58647ca 100644
--- a/pcbnew/pcbnew_config.cpp
+++ b/pcbnew/pcbnew_config.cpp
@@ -234,7 +234,7 @@ void PCB_EDIT_FRAME::Process_Config( wxCommandEvent& event )
break;
default:
- DisplayErrorMessage( this, "Unkown ID in Process Config",
+ DisplayErrorMessage( this, "Unknown ID in Process Config",
wxString::Format( "PCB_EDIT_FRAME::Process_Config received ID %d", id ) );
break;
}
--
2.16.1
References