Skip to content

Commit 68ae955

Browse files
authored
fixes typo in the example Entra ID authority URL in two builder classes XML comments. (#5278)
* Update PublicClientApplicationBuilder.cs * Update ConfidentialClientApplicationBuilder.cs
1 parent f57bed8 commit 68ae955

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client/Microsoft.Identity.Client/AppConfig/ConfidentialClientApplicationBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ public ConfidentialClientApplicationBuilder WithGenericAuthority(string authorit
339339
/// See https://openid.net/specs/openid-connect-core-1_0.html#Terminology
340340
/// </summary>
341341
/// <remarks>
342-
/// Do not use this method with Entra ID authorities (e.g. https://login.microsfoftonline.com/common).
342+
/// Do not use this method with Entra ID authorities (e.g. https://login.microsoftonline.com/common).
343343
/// Use WithAuthority(string) instead.
344344
/// </remarks>
345345
public ConfidentialClientApplicationBuilder WithOidcAuthority(string authorityUri)

src/client/Microsoft.Identity.Client/AppConfig/PublicClientApplicationBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ private PublicClientApplicationBuilder WithParentFunc(Func<object> parentFunc)
226226
/// </summary>
227227
/// <remarks>
228228
/// Experimental on public clients.
229-
/// Do not use this method with Entra ID authorities (e.g. https://login.microsfoftonline.com/common).
229+
/// Do not use this method with Entra ID authorities (e.g. https://login.microsoftonline.com/common).
230230
/// Use WithAuthority(string) instead.
231231
/// </remarks>
232232
public PublicClientApplicationBuilder WithOidcAuthority(string authorityUri)

0 commit comments

Comments
 (0)