Skip to content

Commit 7876a64

Browse files
Merge pull request ryanmcdermott#46 from stewx/patch-1
Correct spelling of Cessna airplane
2 parents 2837f0f + 243a545 commit 7876a64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ class Airplane {
767767
return getMaxAltitude() - getPassengerCount();
768768
case 'Air Force One':
769769
return getMaxAltitude();
770-
case 'Cesna':
770+
case 'Cessna':
771771
return getMaxAltitude() - getFuelExpenditure();
772772
}
773773
}
@@ -794,7 +794,7 @@ class AirForceOne extends Airplane {
794794
}
795795
}
796796

797-
class Cesna extends Airplane {
797+
class Cessna extends Airplane {
798798
//...
799799
getCruisingAltitude() {
800800
return getMaxAltitude() - getFuelExpenditure();

0 commit comments

Comments
 (0)