Skip to content

Commit

Permalink
Fix typo (#3073)
Browse files Browse the repository at this point in the history
Fix type in variable name.
  • Loading branch information
tom-star119 committed Sep 16, 2024
1 parent 09a1282 commit 520633a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ public void Apply(OpenApiOperation operation, OperationFilterContext context)
.Union(metadataAttributes)
.Distinct();

var actionAndEndpointAttribtues = actionAttributes
var actionAndEndpointAttributes = actionAttributes
.Union(metadataAttributes)
.Distinct();

ApplySwaggerOperationAttribute(operation, actionAndEndpointAttribtues);
ApplySwaggerOperationAttribute(operation, actionAndEndpointAttributes);
ApplySwaggerOperationFilterAttributes(operation, context, allAttributes);
ApplySwaggerResponseAttributes(operation, context, allAttributes);
}
Expand Down

0 comments on commit 520633a

Please sign in to comment.