Skip to content

Commit 696eda7

Browse files
committed
Update XML docs for TValue<T> implicit operators
1 parent 554d254 commit 696eda7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Helpers/TValue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
internal record TValue<T>(T Value) where T : struct
99
{
1010
/// <summary>
11-
/// Defines an implicit conversion from a TValue<T> instance to its underlying value of type T.
11+
/// Defines an implicit conversion from a <see cref="TValue{T}"/> instance to its underlying value of type T.
1212
/// </summary>
1313
public static implicit operator T(TValue<T> value)
1414
{
1515
return value.Value;
1616
}
1717

1818
/// <summary>
19-
/// Defines an implicit conversion from the underlying value type to a TValue<T> instance.
19+
/// Defines an implicit conversion from the underlying value type to a <see cref="TValue{T}"/> instance.
2020
/// </summary>
2121
public static implicit operator TValue<T>(T value)
2222
{

0 commit comments

Comments
 (0)