small name fix

This commit is contained in:
NikGapon 2022-12-08 20:35:01 +04:00
parent 9ccb83c58d
commit 67b573ee65

View File

@ -64,11 +64,11 @@ namespace Airbus
}
public IEnumerable<T> GetAirplanes()
{
foreach (var car in _places)
foreach (var airplane in _places)
{
if (car != null)
if (airplane != null)
{
yield return car;
yield return airplane;
}
else
{