Spelling indentifier -> identifier
This commit is contained in:
parent
a607174f9a
commit
3cbf5f4942
|
@ -260,7 +260,7 @@ void DIALOG_EDIT_COMPONENT_IN_SCHEMATIC::OnTestChipName( wxCommandEvent& event )
|
||||||
|
|
||||||
if( id.Parse( partname ) != -1 || !id.IsValid() )
|
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 );
|
DisplayError( this, msg );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,7 +48,7 @@ static void DisplayCmpDocAndKeywords( wxString& aSelection, void* aData )
|
||||||
|
|
||||||
if( id.Parse( aSelection ) != -1 )
|
if( id.Parse( aSelection ) != -1 )
|
||||||
{
|
{
|
||||||
aSelection = _( "Invalid symbol library indentifier!" );
|
aSelection = _( "Invalid symbol library identifier!" );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ struct curl_slist;
|
||||||
* KICAD_CURL_EASY curl;
|
* KICAD_CURL_EASY curl;
|
||||||
*
|
*
|
||||||
* curl.SetURL( "http://github.com" );
|
* curl.SetURL( "http://github.com" );
|
||||||
* curl.SetUserAgent( <http-client-indentifier> );
|
* curl.SetUserAgent( <http-client-identifier> );
|
||||||
* curl.SetHeader( "Accept", "application/json" );
|
* curl.SetHeader( "Accept", "application/json" );
|
||||||
* curl.Perform();
|
* curl.Perform();
|
||||||
* @endcode
|
* @endcode
|
||||||
|
|
Loading…
Reference in New Issue