Skip to content

Commit c7e7ce9

Browse files
committed
Fix typeparam docs
1 parent 390e365 commit c7e7ce9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

MonkeyLoader/Sync/MonkeySyncValue.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,10 @@ public interface IWriteOnlyMonkeySyncValue<out TLink, out TSyncObject, in T> : I
117117
/// <summary>
118118
/// Implements an abstract base for <see cref="ILinkedMonkeySyncValue{TLink, T}"/>s.
119119
/// </summary>
120-
/// <inheritdoc cref="ILinkedMonkeySyncValue{TLink, TSyncObject, T}"/>
120+
/// <typeparam name="TLink">The type of the link object used by the sync object that this sync value links to.</typeparam>
121+
/// <typeparam name="TSyncObject">The type of the sync object that may contain this sync value.</typeparam>
122+
/// <typeparam name="TSyncValue">The concrete type of the sync value.</typeparam>
123+
/// <typeparam name="T">The type of the <see cref="ILinkedMonkeySyncValue{T, TSyncObject}.Value">Value</see>.</typeparam>
121124
public abstract class MonkeySyncValue<TLink, TSyncObject, TSyncValue, T>
122125
: IUnlinkedMonkeySyncValue<TLink, TSyncObject, TSyncValue>,
123126
ILinkedMonkeySyncValue<TLink, TSyncObject, T>

0 commit comments

Comments
 (0)