We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 554d254 commit 696eda7Copy full SHA for 696eda7
1 file changed
src/Helpers/TValue.cs
@@ -8,15 +8,15 @@
8
internal record TValue<T>(T Value) where T : struct
9
{
10
/// <summary>
11
- /// Defines an implicit conversion from a TValue<T> instance to its underlying value of type T.
+ /// Defines an implicit conversion from a <see cref="TValue{T}"/> instance to its underlying value of type T.
12
/// </summary>
13
public static implicit operator T(TValue<T> value)
14
15
return value.Value;
16
}
17
18
19
- /// Defines an implicit conversion from the underlying value type to a TValue<T> instance.
+ /// Defines an implicit conversion from the underlying value type to a <see cref="TValue{T}"/> instance.
20
21
public static implicit operator TValue<T>(T value)
22
0 commit comments