Commit f6d39ad6 authored by Marc Gravell's avatar Marc Gravell

lose the typo on Releasse

parent f82093d8
......@@ -78,6 +78,6 @@ public void Dispose()
private readonly SemaphoreSlim _writeLock = new SemaphoreSlim(1);
internal Task TakeWriteLockAsync() => _writeLock.WaitAsync();
internal void ReleasseWriteLock() => _writeLock.Release();
internal void ReleaseWriteLock() => _writeLock.Release();
}
}
......@@ -398,7 +398,7 @@ void WritePrefix(PipeWriter ooutput, char pprefix)
{
if (client != null)
{
client.ReleasseWriteLock();
client.ReleaseWriteLock();
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment