Fix typo in Receive method declaration

This commit is contained in:
Felony 2019-10-02 17:27:13 +03:30 committed by Andres G. Aragoneses
parent 460ec6fb32
commit 4a663d89b3
3 changed files with 3 additions and 3 deletions

View file

@ -37,7 +37,7 @@ namespace TLSharp.Core.Network
public async Task<byte[]> Receive()
{
var result = await _transport.Receieve();
var result = await _transport.Receive();
using (var memoryStream = new MemoryStream(result.Body))
{