Skip to content

Commit f324f3a

Browse files
committed
fix a bug in OpenApiOperation
1 parent 13617eb commit f324f3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.OpenApi/Models/OpenApiOperation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public void SerializeAsV3(IOpenApiWriter writer)
124124
Tags,
125125
(w, t) =>
126126
{
127-
t.SerializeAsV2(w);
127+
t.SerializeAsV3(w);
128128
});
129129

130130
// summary
@@ -184,7 +184,7 @@ public void SerializeAsV2(IOpenApiWriter writer)
184184
Tags,
185185
(w, t) =>
186186
{
187-
t.SerializeAsV3(w);
187+
t.SerializeAsV2(w);
188188
});
189189

190190
// summary

0 commit comments

Comments
 (0)