Skip to content

Commit efd9366

Browse files
authored
Merge pull request #102891 from MarileeTurscak-MSFT/patch-302
fixed quotation typo
2 parents 8ea08f7 + 680c419 commit efd9366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/scenario-protected-web-api-app-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The bearer token that's set in the header when the app is called holds informati
4444
Here's a C# code example that shows a client calling the API after it acquires a token with Microsoft Authentication Library for .NET (MSAL.NET):
4545

4646
```csharp
47-
var scopes = new[] {$"api://.../access_as_user}";
47+
var scopes = new[] {$"api://.../access_as_user"};
4848
var result = await app.AcquireToken(scopes)
4949
.ExecuteAsync();
5050

0 commit comments

Comments
 (0)