From abac6e6fb6d852df5999433498076923fc7635e9 Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Sat, 27 Apr 2024 18:18:37 -1000 Subject: [PATCH] Update README.md --- 4-minimal-api/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/4-minimal-api/README.md b/4-minimal-api/README.md index a70102c..1a7ba40 100644 --- a/4-minimal-api/README.md +++ b/4-minimal-api/README.md @@ -113,7 +113,7 @@ Use Swagger to ensure that you have a self-documenting API, where the docs chang { app.UseDeveloperExceptionPage(); app.UseSwagger(); - app.UseSwaggerUI(c => + app.UseSwaggerUI(c => // UseSwaggerUI Protected by if (env.IsDevelopment()) { c.SwaggerEndpoint("/swagger/v1/swagger.json", "PizzaStore API V1"); }); @@ -128,7 +128,7 @@ Use Swagger to ensure that you have a self-documenting API, where the docs chang - The `using` statement at the top makes it easier to use the *Swashbuckle* package without having to type out long namespaces for the commands. - The two `builder.Services.Add` lines add the two services that *Swashbuckle* needs to generate the documentation. - - The `UseSwagger` and `UseSwaggerUI` lines add the Swagger and Swagger UI endpoints. + - The `UseSwagger` and `UseSwaggerUI` lines add the Swagger and Swagger UI endpoints. UseSwaggerUI is called only in development. 1. Rerun the project and go to the app's address, `http://localhost:{PORT}/swagger`.