Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-jplatte committed Nov 26, 2024
1 parent dda1d87 commit 2bbf457
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csharp/Svix/Endpoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ public sealed class Endpoint : SvixResourceBase, IEndpoint
{
private readonly IEndpointApi _endpointApi;

public Endpoint(ISvixClient svixClient, IEndpointApi endpoingApi)
public Endpoint(ISvixClient svixClient, IEndpointApi endpointApi)
: base(svixClient)
{
_endpointApi = endpoingApi ?? throw new ArgumentNullException(nameof(_endpointApi));
_endpointApi = endpointApi ?? throw new ArgumentNullException(nameof(_endpointApi));
}

public EndpointOut Create(string appId, EndpointIn endpoint, string idempotencyKey = default)
Expand Down

0 comments on commit 2bbf457

Please sign in to comment.