Skip to content

Commit f51fb9b

Browse files
authored
Fixes UUF comment
1 parent 45a4f89 commit f51fb9b

File tree

1 file changed

+1
-1
lines changed
  • docs/csharp/language-reference/keywords

1 file changed

+1
-1
lines changed

docs/csharp/language-reference/keywords/out.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The `out` keyword is especially useful when a method needs to return more than o
2727
//Calculate the circumference and area of a circle, returning the results to Main().
2828
CalculateCircumferenceAndArea(radiusValue, out double circumferenceResult, out var areaResult);
2929
System.Console.WriteLine($"Circumference of a circle with a radius of {radiusValue} is {circumferenceResult}.");
30-
System.Console.WriteLine($"Are of a circle with a radius of {radiusValue} is {areaResult}.");
30+
System.Console.WriteLine($"Area of a circle with a radius of {radiusValue} is {areaResult}.");
3131
Console.ReadLine();
3232
}
3333

0 commit comments

Comments
 (0)