Skip to content

Commit 965f865

Browse files
authored
Update aspnetcore/tutorials/razor-pages/razor-pages-start.md
1 parent adfec8e commit 965f865

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 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)