Spelling indentifier -> identifier

This commit is contained in:
Seth Hillbrand 2018-03-07 19:48:38 -08:00
parent a607174f9a
commit 3cbf5f4942
3 changed files with 3 additions and 3 deletions

View File

@ -260,7 +260,7 @@ void DIALOG_EDIT_COMPONENT_IN_SCHEMATIC::OnTestChipName( wxCommandEvent& event )
if( id.Parse( partname ) != -1 || !id.IsValid() )
{
msg.Printf( _( "\"%s\" is not a valid library symbol indentifier." ), partname );
msg.Printf( _( "\"%s\" is not a valid library symbol identifier." ), partname );
DisplayError( this, msg );
return;
}

View File

@ -48,7 +48,7 @@ static void DisplayCmpDocAndKeywords( wxString& aSelection, void* aData )
if( id.Parse( aSelection ) != -1 )
{
aSelection = _( "Invalid symbol library indentifier!" );
aSelection = _( "Invalid symbol library identifier!" );
return;
}

View File

@ -49,7 +49,7 @@ struct curl_slist;
* KICAD_CURL_EASY curl;
*
* curl.SetURL( "http://github.com" );
* curl.SetUserAgent( <http-client-indentifier> );
* curl.SetUserAgent( <http-client-identifier> );
* curl.SetHeader( "Accept", "application/json" );
* curl.Perform();
* @endcode