From 24469a7216516789af227349e5bdbf5aceb63703 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Mon, 15 Jun 2026 11:53:46 -0400 Subject: [PATCH] docs: fixes comment for Responses property --- src/Microsoft.OpenApi/Models/OpenApiOperation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.OpenApi/Models/OpenApiOperation.cs b/src/Microsoft.OpenApi/Models/OpenApiOperation.cs index e4625ff1d..ee1afcc0a 100644 --- a/src/Microsoft.OpenApi/Models/OpenApiOperation.cs +++ b/src/Microsoft.OpenApi/Models/OpenApiOperation.cs @@ -75,7 +75,7 @@ public ISet? Tags public IOpenApiRequestBody? RequestBody { get; set; } /// - /// REQUIRED. The list of possible responses as they are returned from executing this operation. + /// The list of possible responses as they are returned from executing this operation. /// public OpenApiResponses? Responses { get; set; } = [];