Skip to content

Commit

Permalink
fix Sucess typo (#5061)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored May 23, 2024
1 parent 4332719 commit 196d737
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ public int InitializeCommunication()
/// <inheritdoc/>
public bool WaitForRequestHandlerConnection(int clientConnectionTimeout)
{
var waitSucess = _handShakeComplete.WaitOne(clientConnectionTimeout);
return waitSucess && _handShakeSuccessful;
var waitSuccess = _handShakeComplete.WaitOne(clientConnectionTimeout);
return waitSuccess && _handShakeSuccessful;
}

/// <inheritdoc/>
Expand Down

0 comments on commit 196d737

Please sign in to comment.