From f03e2bb346f6b22bac884e740719418ff0165e83 Mon Sep 17 00:00:00 2001 From: Safia Abdalla Date: Tue, 28 May 2024 17:04:05 -0700 Subject: [PATCH] Fix ReDoc link in OpenAPI docs (#32688) --- aspnetcore/fundamentals/minimal-apis/aspnetcore-openapi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/minimal-apis/aspnetcore-openapi.md b/aspnetcore/fundamentals/minimal-apis/aspnetcore-openapi.md index c48a306a97..8cb1e5397f 100644 --- a/aspnetcore/fundamentals/minimal-apis/aspnetcore-openapi.md +++ b/aspnetcore/fundamentals/minimal-apis/aspnetcore-openapi.md @@ -185,7 +185,7 @@ OpenAPI documents can plug into a wide ecosystem of existing tools for testing, ### Using Swagger UI for local ad-hoc testing -By default, the `Microsoft.AspNetCore.OpenApi` package doesn't ship with built-in support for visualizing or interacting with the OpenAPI document. Popular tools for visualizing or interacting with the OpenAPI document include [Swagger UI](https://swagger.io/tools/swaggerhub/) and [ReDoc](https://appsumo.com/products/redoc/). Swagger UI and ReDoc can be integrated in an app in several ways. Editors such as Visual Studio and VS Code offer extensions and built-in experiences for testing against an OpenAPI document. +By default, the `Microsoft.AspNetCore.OpenApi` package doesn't ship with built-in support for visualizing or interacting with the OpenAPI document. Popular tools for visualizing or interacting with the OpenAPI document include [Swagger UI](https://swagger.io/tools/swaggerhub/) and [ReDoc](https://github.com/Redocly/redoc). Swagger UI and ReDoc can be integrated in an app in several ways. Editors such as Visual Studio and VS Code offer extensions and built-in experiences for testing against an OpenAPI document. The `Swashbuckle.AspNetCore.SwaggerUi` package provides a bundle of Swagger UI's web assets for use in apps. This package can be used to render a UI for the generated document. To configure this, install the `Swashbuckle.AspNetCore.SwaggerUi` package.