Skip to content

Commit 725a1b0

Browse files
authored
remove spurious double quote (#555)
1 parent 4c94c4f commit 725a1b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

standard/documentation-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ namespace Graphics
10161016
/// A string representing a point's location, in the form (x,y),
10171017
/// without any leading, training, or embedded whitespace.
10181018
/// </returns>
1019-
public override string ToString() => $"("{X},{Y})";
1019+
public override string ToString() => $"({X},{Y})";
10201020

10211021
/// <summary>
10221022
/// This operator determines whether two Points have the same location.

0 commit comments

Comments
 (0)