thangchung/clean-code-dotnet

There is a syntax error in the "Avoid conditionals" Section

esofar opened this issue · 1 comments

Error:

interface IAirplane
{
    // ...

    public double GetCruisingAltitude();
}

The correct grammar should be:

interface IAirplane
{
    // ...

    double GetCruisingAltitude();
}

Thank you for your finding. I have fixed it 👍