Skip to content

Commit 4758fb2

Browse files
Kpollock1guardrex
andauthored
Fix minor typo (#34423)
* Fix minor typo Remove duplicated "such as" in sentence "... static assets in an app 'such as' HTML..." * Update aspnetcore/tutorials/razor-pages/razor-pages-start.md --------- Co-authored-by: Luke Latham <[email protected]>
1 parent c55fd5f commit 4758fb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aspnetcore/tutorials/razor-pages/razor-pages-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ The following code enables various [Middleware](xref:fundamentals/middleware/ind
180180
* `app.UseRouting();` : Adds route matching to the middleware pipeline. For more information, see <xref:fundamentals/routing>.
181181
* `app.UseAuthorization();` : Authorizes a user to access secure resources. This app doesn't use authorization, therefore this line could be removed.
182182
* `app.MapRazorPages();`: Configures endpoint routing for Razor Pages.
183-
* `app.MapStaticAssets();` : Optimize the delivery of static assets in an app such as such as HTML, CSS, images, and JavaScript to be served. For more information, see <xref:aspnetcore-9#optimizing-static-web-asset-delivery>.
183+
* `app.MapStaticAssets();` : Optimize the delivery of static assets in an app, such as HTML, CSS, images, and JavaScript. For more information, see <xref:aspnetcore-9#optimizing-static-web-asset-delivery>.
184184
* `app.Run();` : Runs the app.
185185

186186
## Troubleshooting with the completed sample

0 commit comments

Comments
 (0)