From b9bc4750ab147948d66678af7e583878ce96f28a Mon Sep 17 00:00:00 2001 From: Masuri Date: Sat, 27 Aug 2022 03:54:30 +0900 Subject: [PATCH] fix typo (#999) --- src/Renci.SshNet/Sftp/SftpFileReader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Renci.SshNet/Sftp/SftpFileReader.cs b/src/Renci.SshNet/Sftp/SftpFileReader.cs index 3aed4f53..a881e9c0 100644 --- a/src/Renci.SshNet/Sftp/SftpFileReader.cs +++ b/src/Renci.SshNet/Sftp/SftpFileReader.cs @@ -82,7 +82,7 @@ namespace Renci.SshNet.Sftp lock (_readLock) { - // wait until either the next chunk is avalable, an exception has occurred or the current + // wait until either the next chunk is available, an exception has occurred or the current // instance is already disposed while (!_queue.TryGetValue(_nextChunkIndex, out nextChunk) && _exception == null) {