Skip to content

Commit

Permalink
Merge pull request #1648 from SimonCropp:fix-broken-xml-docs
Browse files Browse the repository at this point in the history
fix broken xml docs
  • Loading branch information
damianh authored Dec 3, 2024
2 parents 1c24032 + 1c65bc1 commit 486dd4c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hosts/AspNetIdentity/Pages/Telemetry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static void ConsentGranted(string clientId, IEnumerable<string> scopes, b
}

/// <summary>
/// Helper method to increase <see cref="Counters.ConsentDenied"/> counter. The scopes
/// Helper method to increase <see cref="Counters.Consent"/> counter. The scopes
/// are expanded and called one by one to not cause a combinatory explosion of scopes.
/// </summary>
/// <param name="clientId">Client id</param>
Expand Down
2 changes: 1 addition & 1 deletion hosts/Configuration/Pages/Telemetry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static void ConsentGranted(string clientId, IEnumerable<string> scopes, b
}

/// <summary>
/// Helper method to increase <see cref="Counters.ConsentDenied"/> counter. The scopes
/// Helper method to increase <see cref="Counters.Consent"/> counter. The scopes
/// are expanded and called one by one to not cause a combinatory explosion of scopes.
/// </summary>
/// <param name="clientId">Client id</param>
Expand Down
4 changes: 2 additions & 2 deletions hosts/EntityFramework/Pages/Telemetry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static void ConsentGranted(string clientId, IEnumerable<string> scopes, b
}

/// <summary>
/// Helper method to increase <see cref="Counters.ConsentDenied"/> counter. The scopes
/// Helper method to increase <see cref="Counters.Consent"/> counter. The scopes
/// are expanded and called one by one to not cause a combinatory explosion of scopes.
/// </summary>
/// <param name="clientId">Client id</param>
Expand Down Expand Up @@ -123,7 +123,7 @@ public static void UserLogin(string? clientId, string idp)
=> UserLoginCounter.Add(1, new(Tags.Client, clientId), new(Tags.Idp, idp));

/// <summary>
/// Helper method to increase <see cref="Counters.UserLogin" counter on failure.
/// Helper method to increase <see cref="Counters.UserLogin"> counter on failure.
/// </summary>
/// <param name="clientId">Client Id, if available</param>
/// <param name="error">Error message</param>
Expand Down
2 changes: 1 addition & 1 deletion hosts/main/Pages/Telemetry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static void ConsentGranted(string clientId, IEnumerable<string> scopes, b
}

/// <summary>
/// Helper method to increase <see cref="Counters.ConsentDenied"/> counter. The scopes
/// Helper method to increase <see cref="Counters.Consent"/> counter. The scopes
/// are expanded and called one by one to not cause a combinatory explosion of scopes.
/// </summary>
/// <param name="clientId">Client id</param>
Expand Down

0 comments on commit 486dd4c

Please sign in to comment.