From 2b52415cae39c177d51bdf5aaea1aac4ac2c03f4 Mon Sep 17 00:00:00 2001 From: Carsten Schoenert Date: Sun, 25 Feb 2018 13:17:27 +0100 Subject: [PATCH] fix misspelled 'Unkown' -> 'Unknown' --- 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 b5fe9b1d66..15a893cca9 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 1540584805..1d58647ca1 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; }