Skip to content

Commit

Permalink
fix: aligns parameter name with interface definition for example
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <vibiret@microsoft.com>
  • Loading branch information
baywet committed Jan 24, 2025
1 parent 68b25cc commit d7e1f91
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ public void SerializeAsV31(IOpenApiWriter writer)
}

/// <inheritdoc/>
public IOpenApiExample CopyReferenceAsTargetElementWithOverrides(IOpenApiExample openApiExample)
public IOpenApiExample CopyReferenceAsTargetElementWithOverrides(IOpenApiExample source)
{
return openApiExample is OpenApiExample ? new OpenApiExample(this) : openApiExample;
return source is OpenApiExample ? new OpenApiExample(this) : source;
}

/// <inheritdoc/>
Expand Down

0 comments on commit d7e1f91

Please sign in to comment.