diff --git a/aspnetcore/performance/timeouts.md b/aspnetcore/performance/timeouts.md index 6e39ae0a47..ef2d16e9c1 100644 --- a/aspnetcore/performance/timeouts.md +++ b/aspnetcore/performance/timeouts.md @@ -36,7 +36,7 @@ Adding the middleware to the app doesn't automatically start triggering timeouts ## Configure one endpoint or page -For minimal API apps, configure an endpoint to time out by calling , or by applying the [`[RequestTimeout]`](xref:Microsoft.AspNetCore.Http.Timeouts.RequestTimeoutAttribute) attribute, as shown in the following example: +For minimal API apps, configure an endpoint to timeout by calling , or by applying the [`[RequestTimeout]`](xref:Microsoft.AspNetCore.Http.Timeouts.RequestTimeoutAttribute) attribute, as shown in the following example: :::code language="csharp" source="~/performance/timeouts/samples/8.x/Program.cs" id="oneendpoint" highlight="20,24":::