We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aad466 commit bfab00fCopy full SHA for bfab00f
docs/usage/openapi.md
@@ -39,7 +39,7 @@ public class Startup
39
IMvcCoreBuilder builder = services.AddMvcCore();
40
services.AddJsonApi<AppDbContext>(mvcBuilder: builder);
41
42
- // Adds the Swashbuckle integration
+ // Adds the Swashbuckle integration.
43
services.AddOpenApi(builder);
44
}
45
@@ -48,7 +48,7 @@ public class Startup
48
app.UseRouting();
49
app.UseJsonApi();
50
51
- // Adds the Swashbuckle middleware
+ // Adds the Swashbuckle middleware.
52
app.UseSwagger();
53
54
app.UseEndpoints(endpoints => endpoints.MapControllers());
0 commit comments