Skip to content

Commit f30927c

Browse files
author
Bart Koelman
committed
Corrected doc-comments
1 parent ef614bc commit f30927c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/JsonApiDotNetCore/Resources/IResourceDefinition.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ public interface IResourceDefinition<TResource, TId>
164164
/// </para>
165165
/// </summary>
166166
/// <param name="leftResource">
167-
/// The original resource retrieved from the underlying data store, that declares <paramref name="hasOneRelationship" />.
167+
/// The original resource retrieved from the underlying data store. Its type, <typeparamref name="TResource" />, declares
168+
/// <paramref name="hasOneRelationship" />.
168169
/// </param>
169170
/// <param name="hasOneRelationship">
170171
/// The to-one relationship being set.
@@ -192,7 +193,8 @@ Task<IIdentifiable> OnSetToOneRelationshipAsync(TResource leftResource, HasOneAt
192193
/// </para>
193194
/// </summary>
194195
/// <param name="leftResource">
195-
/// The original resource retrieved from the underlying data store, that declares <paramref name="hasManyRelationship" />.
196+
/// The original resource retrieved from the underlying data store. Its type, <typeparamref name="TResource" />, declares
197+
/// <paramref name="hasManyRelationship" />.
196198
/// </param>
197199
/// <param name="hasManyRelationship">
198200
/// The to-many relationship being set.
@@ -238,7 +240,8 @@ Task OnAddToRelationshipAsync(TId leftResourceId, HasManyAttribute hasManyRelati
238240
/// </para>
239241
/// </summary>
240242
/// <param name="leftResource">
241-
/// The original resource retrieved from the underlying data store, that declares <paramref name="hasManyRelationship" />.
243+
/// The original resource retrieved from the underlying data store. Its type, <typeparamref name="TResource" />, declares
244+
/// <paramref name="hasManyRelationship" />.
242245
/// </param>
243246
/// <param name="hasManyRelationship">
244247
/// The to-many relationship being removed from.

0 commit comments

Comments
 (0)