Skip to content

Commit 253f776

Browse files
committed
Fixed typo
1 parent 81de536 commit 253f776

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/content/docs/bff/getting-started/single-frontend.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,12 +180,12 @@ It's important to mark up the APIs with .AsBffApiEndpoint(), because this adds C
180180
<Code
181181
lang="csharp"
182182
title="Program.cs"
183-
code={`// Aadds authorization for local and remote API endpoints
183+
code={`// Adds authorization for local and remote API endpoints
184184
app.UseAuthorization();
185185
186186
// Place your custom routes after the 'UseAuthorization()'
187187
app.MapGet("/hello-world", () => "hello-world")
188-
.AsBffApiEndpoint(); // Aadds CSRF protection to the controller endpoints`}/>
188+
.AsBffApiEndpoint(); // Adds CSRF protection to the controller endpoints`}/>
189189

190190
</TabItem>
191191
<TabItem label="Controllers">

0 commit comments

Comments
 (0)