There is a syntax error in the "Avoid conditionals" Section
esofar opened this issue · 1 comments
esofar commented
Error:
interface IAirplane
{
// ...
public double GetCruisingAltitude();
}
The correct grammar should be:
interface IAirplane
{
// ...
double GetCruisingAltitude();
}
thangchung commented
Thank you for your finding. I have fixed it 👍