From 72ed7eb048b04291d87083853fddbd2545bc1c35 Mon Sep 17 00:00:00 2001 From: Luke Latham Date: Wed, 8 Jul 2020 12:21:25 -0500 Subject: [PATCH] Fix cross-link (#19144) --- aspnetcore/tutorials/getting-started-with-swashbuckle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/getting-started-with-swashbuckle.md b/aspnetcore/tutorials/getting-started-with-swashbuckle.md index 64982bdbb3..c1d273ab0e 100644 --- a/aspnetcore/tutorials/getting-started-with-swashbuckle.md +++ b/aspnetcore/tutorials/getting-started-with-swashbuckle.md @@ -111,7 +111,7 @@ In the `Startup.Configure` method, enable the middleware for serving the generat The preceding `UseSwaggerUI` method call enables the [Static File Middleware](xref:fundamentals/static-files). If targeting .NET Framework or .NET Core 1.x, add the [Microsoft.AspNetCore.StaticFiles](https://www.nuget.org/packages/Microsoft.AspNetCore.StaticFiles/) NuGet package to the project. -Launch the app, and navigate to `http://localhost:/swagger/v1/swagger.json`. The generated document describing the endpoints appears as shown in [Swagger specification (swagger.json)](xref:tutorials/web-api-help-pages-using-swagger#swagger-specification-swaggerjson). +Launch the app, and navigate to `http://localhost:/swagger/v1/swagger.json`. The generated document describing the endpoints appears as shown in [OpenAPI specification (openapi.json)](xref:tutorials/web-api-help-pages-using-swagger#openapi-specification-openapijson). The Swagger UI can be found at `http://localhost:/swagger`. Explore the API via Swagger UI and incorporate it in other programs.