1
0
Fork 0

Minor comment fixes

This commit is contained in:
Szymon Acedański 2017-02-25 17:41:28 +01:00
parent 4403f22a8b
commit e37fd6ea1f
2 changed files with 2 additions and 2 deletions

View file

@ -724,7 +724,7 @@ void FGAirport::validateILSData()
SGPath path;
if (!XMLLoader::findAirportData(ident(), "ils", path)) {
return; // no XML tower data
return; // no XML ILS data
}
try {

View file

@ -133,7 +133,7 @@ static string cleanRunwayNo(const string& aRwyNo)
}
string result(aRwyNo);
// canonicalise runway ident
// canonicalise runway ident to two digits and one optional uppercase letter
if ((aRwyNo.size() == 1) || !isdigit(aRwyNo[1])) {
result = "0" + aRwyNo;
}