Fix comment typo.

Comment has XDG_CONFIG_HOME, but it should be KICAD_CONFIG_HOME.
This commit is contained in:
Steven A. Falco 2018-04-27 09:29:53 -04:00 committed by Seth Hillbrand
parent 9648584827
commit e0ca5bab11
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ wxString GetKicadConfigPath()
// Use KICAD_CONFIG_HOME to allow the user to force a specific configuration path.
if( wxGetEnv( wxT( "KICAD_CONFIG_HOME" ), &envstr ) && !envstr.IsEmpty() )
{
// Override the assignment above with XDG_CONFIG_HOME
// Override the assignment above with KICAD_CONFIG_HOME
cfgpath.AssignDir( envstr );
}