diff --git a/aspnetcore/web-api/action-return-types.md b/aspnetcore/web-api/action-return-types.md index 9e7b39c7a027..0ebdb4e59206 100644 --- a/aspnetcore/web-api/action-return-types.md +++ b/aspnetcore/web-api/action-return-types.md @@ -160,7 +160,7 @@ The `HttpResults` can be useful when sharing code between Minimal APIs and Web A The namespace contains classes that implement the interface. The `IResult` interface defines a contract that represents the result of an HTTP endpoint. The static [Results]() class is used to create varying `IResult` objects that represent different types of responses. -The [Built-in results](/aspnet/core/fundamentals/minimal-apis?view=aspnetcore-7.0&preserve-view=true#binr7) table shows the common result helpers. +The [Built-in results](/aspnet/core/fundamentals/minimal-apis#built-in-results) table shows the common result helpers. Consider the following code: