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 7afeabe commit 88ad997Copy full SHA for 88ad997
src/Microsoft.OpenApi/Models/OpenApiReference.cs
@@ -158,11 +158,11 @@ public OpenApiReference(OpenApiReference reference)
158
/// </summary>
159
public void SerializeAsV31(IOpenApiWriter writer)
160
{
161
- SerializeInternal(writer, x =>
+ SerializeInternal(writer, w =>
162
163
// summary and description are in 3.1 but not in 3.0
164
- writer.WriteProperty(OpenApiConstants.Summary, Summary);
165
- writer.WriteProperty(OpenApiConstants.Description, Description);
+ w.WriteProperty(OpenApiConstants.Summary, Summary);
+ w.WriteProperty(OpenApiConstants.Description, Description);
166
});
167
}
168
0 commit comments