From e064734b4441da7a512f24aea0f5f176568f864c Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Fri, 4 Apr 2025 16:33:34 -1000 Subject: [PATCH 1/2] Update action-return-types.md --- aspnetcore/web-api/action-return-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/web-api/action-return-types.md b/aspnetcore/web-api/action-return-types.md index 9e7b39c7a027..cb438faeb41a 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](xref:minimal-apis#built-in-results) table shows the common result helpers. Consider the following code: From 1f23c93d963e3dd2355329315c28f88c106ee4b0 Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Mon, 7 Apr 2025 11:45:04 -1000 Subject: [PATCH 2/2] Update aspnetcore/web-api/action-return-types.md --- aspnetcore/web-api/action-return-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/web-api/action-return-types.md b/aspnetcore/web-api/action-return-types.md index cb438faeb41a..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](xref:minimal-apis#built-in-results) 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: