Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lindexi authored and jacqueskang committed Oct 24, 2020
1 parent 99c146b commit e4be2cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/JKang.IpcServiceFramework.Hosting/IpcEndpoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private async Task ProcessAsync(Stream server, CancellationToken stoppingToken)
_logger.LogDebug($"Request received, invoking '{request.MethodName}'...");
using (IServiceScope scope = _serviceProvider.CreateScope())
{
response = await GetReponseAsync(request, scope).ConfigureAwait(false);
response = await GetResponseAsync(request, scope).ConfigureAwait(false);
}
}
catch (Exception ex) when (!(ex is IpcException))
Expand Down Expand Up @@ -151,7 +151,7 @@ private async Task ProcessAsync(Stream server, CancellationToken stoppingToken)
}
}

private async Task<IpcResponse> GetReponseAsync(IpcRequest request, IServiceScope scope)
private async Task<IpcResponse> GetResponseAsync(IpcRequest request, IServiceScope scope)
{
object service = scope.ServiceProvider.GetService<TContract>();
if (service == null)
Expand Down

0 comments on commit e4be2cd

Please sign in to comment.