Skip to content

Commit

Permalink
Fix a couple of wrong crefs to IGw2WebApiV2Client.Itemstats
Browse files Browse the repository at this point in the history
  • Loading branch information
Archomeda committed Jul 28, 2019
1 parent 68380e2 commit 0b80316
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gw2Sharp/WebApi/V2/Models/Items/ItemArmorDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class ItemArmorDetails

/// <summary>
/// The item stat choices.
/// Each element can be resolved against <see cref="IGw2WebApiV2Client.ItemStats"/>.
/// Each element can be resolved against <see cref="IGw2WebApiV2Client.Itemstats"/>.
/// </summary>
public IReadOnlyList<int> StatChoices { get; set; } = new List<int>();
}
Expand Down
2 changes: 1 addition & 1 deletion Gw2Sharp/WebApi/V2/Models/Items/ItemBackDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class ItemBackDetails

/// <summary>
/// The item stat choices.
/// Each element can be resolved against <see cref="IGw2WebApiV2Client.ItemStats"/>.
/// Each element can be resolved against <see cref="IGw2WebApiV2Client.Itemstats"/>.
/// </summary>
public IReadOnlyList<int> StatChoices { get; set; } = new List<int>();
}
Expand Down
2 changes: 1 addition & 1 deletion Gw2Sharp/WebApi/V2/Models/Items/ItemInfixUpgrade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ItemInfixUpgrade
{
/// <summary>
/// The infix upgrade item id.
/// Can be resolved against <see cref="IGw2WebApiV2Client.ItemStats"/>.
/// Can be resolved against <see cref="IGw2WebApiV2Client.Itemstats"/>.
/// If the infix upgrade does not have an item, this value is <c>null</c>.
/// </summary>
public int? Id { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion Gw2Sharp/WebApi/V2/Models/Items/ItemTrinketDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ItemTrinketDetails

/// <summary>
/// The item stat choices.
/// Each element can be resolved against <see cref="IGw2WebApiV2Client.ItemStats"/>.
/// Each element can be resolved against <see cref="IGw2WebApiV2Client.Itemstats"/>.
/// </summary>
public IReadOnlyList<int> StatChoices { get; set; } = new List<int>();
}
Expand Down
2 changes: 1 addition & 1 deletion Gw2Sharp/WebApi/V2/Models/Items/ItemWeaponDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class ItemWeaponDetails

/// <summary>
/// The item stat choices.
/// Each element can be resolved against <see cref="IGw2WebApiV2Client.ItemStats"/>.
/// Each element can be resolved against <see cref="IGw2WebApiV2Client.Itemstats"/>.
/// </summary>
public IReadOnlyList<int> StatChoices { get; set; } = new List<int>();
}
Expand Down

0 comments on commit 0b80316

Please sign in to comment.