Skip to content

Commit e65face

Browse files
Fix comment
Allegedly, Person.Id could not be resolved, which lead to an error on appveyor. This commit fixes that error by removing the cref.
1 parent 7fc31f3 commit e65face

File tree

1 file changed

+2
-2
lines changed
  • src/Examples/JsonApiDotNetCoreExample.Cosmos/Models

1 file changed

+2
-2
lines changed

src/Examples/JsonApiDotNetCoreExample.Cosmos/Models/TodoItem.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public string PartitionKey
6868
public ISet<Tag> Tags { get; set; } = new HashSet<Tag>();
6969

7070
/// <summary>
71-
/// Gets or sets the <see cref="Person.Id" /> of the <see cref="Owner" />.
71+
/// Gets or sets the person ID of the <see cref="Owner" />.
7272
/// </summary>
7373
/// <remarks>
7474
/// With Cosmos DB, the foreign key must at least be accessible for filtering. Making it viewable is discouraged by the JSON:API specification.
@@ -77,7 +77,7 @@ public string PartitionKey
7777
public Guid OwnerId { get; set; }
7878

7979
/// <summary>
80-
/// Gets or sets the <see cref="Person.Id" /> of the <see cref="Assignee" />.
80+
/// Gets or sets the person ID of the <see cref="Assignee" />.
8181
/// </summary>
8282
/// <remarks>
8383
/// With Cosmos DB, the foreign key must at least be accessible for filtering. Making it viewable is discouraged by the JSON:API specification.

0 commit comments

Comments
 (0)