small name fix
This commit is contained in:
parent
9ccb83c58d
commit
67b573ee65
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user