diff --git a/eeschema/sch_plugins/cadstar/cadstar_sch_archive_loader.cpp b/eeschema/sch_plugins/cadstar/cadstar_sch_archive_loader.cpp index 2a354990cd..fa5086c202 100644 --- a/eeschema/sch_plugins/cadstar/cadstar_sch_archive_loader.cpp +++ b/eeschema/sch_plugins/cadstar/cadstar_sch_archive_loader.cpp @@ -618,7 +618,7 @@ void CADSTAR_SCH_ARCHIVE_LOADER::loadSchematicSymbolInstances() } else { - wxASSERT_MSG( false, "Unkown Symbol Variant." ); + wxASSERT_MSG( false, "Unknown Symbol Variant." ); } } else diff --git a/pcbnew/dialogs/dialog_imported_layers.cpp b/pcbnew/dialogs/dialog_imported_layers.cpp index cce4d252d4..7f58d8bc52 100644 --- a/pcbnew/dialogs/dialog_imported_layers.cpp +++ b/pcbnew/dialogs/dialog_imported_layers.cpp @@ -305,7 +305,7 @@ std::vector DIALOG_IMPORTED_LAYERS::GetUnmappedRequiredLayers() const for( const wxString& layerName : m_unmatched_layer_names ) { const INPUT_LAYER_DESC* layerDesc = GetLayerDescription( layerName ); - wxASSERT_MSG( layerDesc != nullptr, "Expected to find layer decription" ); + wxASSERT_MSG( layerDesc != nullptr, "Expected to find layer description" ); if( layerDesc->Required ) unmappedLayers.push_back( layerDesc->Name ); } diff --git a/pcbnew/dialogs/panel_setup_constraints_base.cpp b/pcbnew/dialogs/panel_setup_constraints_base.cpp index ae612fe940..26a0496ba3 100644 --- a/pcbnew/dialogs/panel_setup_constraints_base.cpp +++ b/pcbnew/dialogs/panel_setup_constraints_base.cpp @@ -102,7 +102,7 @@ PANEL_SETUP_CONSTRAINTS_BASE::PANEL_SETUP_CONSTRAINTS_BASE( wxWindow* parent, wx bSizerOutlinesOpts = new wxBoxSizer( wxVERTICAL ); m_rbOutlinePolygonBestQ = new wxRadioButton( this, wxID_ANY, _("Mimic legacy behavior"), wxDefaultPosition, wxDefaultSize, 0 ); - m_rbOutlinePolygonBestQ->SetToolTip( _("Produces a slightly smoother outline at the expense of performance, some export fidelity issues, and overly agressive higher-priority zone knockouts.") ); + m_rbOutlinePolygonBestQ->SetToolTip( _("Produces a slightly smoother outline at the expense of performance, some export fidelity issues, and overly aggressive higher-priority zone knockouts.") ); bSizerOutlinesOpts->Add( m_rbOutlinePolygonBestQ, 0, wxALL, 4 ); diff --git a/pcbnew/dialogs/panel_setup_constraints_base.fbp b/pcbnew/dialogs/panel_setup_constraints_base.fbp index 354a4646c1..1cda8d43f0 100644 --- a/pcbnew/dialogs/panel_setup_constraints_base.fbp +++ b/pcbnew/dialogs/panel_setup_constraints_base.fbp @@ -1048,7 +1048,7 @@ ; ; forward_declare 0 - Produces a slightly smoother outline at the expense of performance, some export fidelity issues, and overly agressive higher-priority zone knockouts. + Produces a slightly smoother outline at the expense of performance, some export fidelity issues, and overly aggressive higher-priority zone knockouts. wxFILTER_NONE wxDefaultValidator diff --git a/pcbnew/drc/drc_test_provider_misc.cpp b/pcbnew/drc/drc_test_provider_misc.cpp index a8247ebbf0..e3cfcf0899 100644 --- a/pcbnew/drc/drc_test_provider_misc.cpp +++ b/pcbnew/drc/drc_test_provider_misc.cpp @@ -57,7 +57,7 @@ public: virtual const wxString GetName() const override { - return "miscellanous"; + return "miscellaneous"; }; virtual const wxString GetDescription() const override diff --git a/pcbnew/plugins/eagle/eagle_plugin.cpp b/pcbnew/plugins/eagle/eagle_plugin.cpp index b5129c62d8..4bebad4d8a 100644 --- a/pcbnew/plugins/eagle/eagle_plugin.cpp +++ b/pcbnew/plugins/eagle/eagle_plugin.cpp @@ -1917,7 +1917,7 @@ void EAGLE_PLUGIN::packageRectangle( FOOTPRINT* aFootprint, wxXmlNode* aTree ) c if( layer == UNDEFINED_LAYER ) { - wxLogMessage( wxString::Format( _( "Ignoring a rectange since Eagle layer '%s' (%d) " + wxLogMessage( wxString::Format( _( "Ignoring a rectangle since Eagle layer '%s' (%d) " "was not mapped" ), eagle_layer_name( r.layer ), r.layer ) );