Fix xmldoc for Line -> LineF conversion

This commit is contained in:
Oliver Booth 2022-06-01 14:47:41 +01:00
parent e9b0ed08d4
commit 9c1714b419
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public readonly struct LineF : IEquatable<LineF>, IComparable<LineF>, IComparabl
/// Implicitly converts a <see cref="Line" /> to a <see cref="LineF" />. /// Implicitly converts a <see cref="Line" /> to a <see cref="LineF" />.
/// </summary> /// </summary>
/// <param name="line">The line to convert.</param> /// <param name="line">The line to convert.</param>
/// <returns>The line polygon.</returns> /// <returns>The converted line.</returns>
public static implicit operator LineF(Line line) public static implicit operator LineF(Line line)
{ {
return new LineF(line.Start, line.End); return new LineF(line.Start, line.End);