markjprice/cs11dotnet7

A minor formatting issue on page 270

MAS-OUD opened this issue · 2 comments

On page 270:
WriteLine($"a == b: {(a == b)}");
unnecessary parentheses can be removed:
WriteLine($"a == b: {a == b}");

might be a little confusing for the reader because curly braces surround the parenthesis immediately here.