Skip to content

Commit

Permalink
typo (dotnet#42392)
Browse files Browse the repository at this point in the history
Fixes UUF comment
  • Loading branch information
BillWagner authored Aug 30, 2024
1 parent 45a4f89 commit f51fb9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/csharp/language-reference/keywords/out.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The `out` keyword is especially useful when a method needs to return more than o
//Calculate the circumference and area of a circle, returning the results to Main().
CalculateCircumferenceAndArea(radiusValue, out double circumferenceResult, out var areaResult);
System.Console.WriteLine($"Circumference of a circle with a radius of {radiusValue} is {circumferenceResult}.");
System.Console.WriteLine($"Are of a circle with a radius of {radiusValue} is {areaResult}.");
System.Console.WriteLine($"Area of a circle with a radius of {radiusValue} is {areaResult}.");
Console.ReadLine();
}

Expand Down

0 comments on commit f51fb9b

Please sign in to comment.