@@ -1987,9 +1987,9 @@ public void RequestPosixRename(string oldPath, string newPath)
1987
1987
/// <param name="path">The path.</param>
1988
1988
/// <param name="nullOnError">if set to <see langword="true"/> [null on error].</param>
1989
1989
/// <returns>
1990
- /// A <see cref="SftpFileSytemInformation "/> for the specified path.
1990
+ /// A <see cref="SftpFileSystemInformation "/> for the specified path.
1991
1991
/// </returns>
1992
- public SftpFileSytemInformation RequestStatVfs ( string path , bool nullOnError = false )
1992
+ public SftpFileSystemInformation RequestStatVfs ( string path , bool nullOnError = false )
1993
1993
{
1994
1994
if ( ProtocolVersion < 3 )
1995
1995
{
@@ -1998,7 +1998,7 @@ public SftpFileSytemInformation RequestStatVfs(string path, bool nullOnError = f
1998
1998
1999
1999
SshException exception = null ;
2000
2000
2001
- SftpFileSytemInformation information = null ;
2001
+ SftpFileSystemInformation information = null ;
2002
2002
2003
2003
using ( var wait = new AutoResetEvent ( initialState : false ) )
2004
2004
{
@@ -2045,7 +2045,7 @@ public SftpFileSytemInformation RequestStatVfs(string path, bool nullOnError = f
2045
2045
/// <see cref="Task{Task}.Result"/> contains the file system information for the specified
2046
2046
/// path.
2047
2047
/// </returns>
2048
- public async Task < SftpFileSytemInformation > RequestStatVfsAsync ( string path , CancellationToken cancellationToken )
2048
+ public async Task < SftpFileSystemInformation > RequestStatVfsAsync ( string path , CancellationToken cancellationToken )
2049
2049
{
2050
2050
if ( ProtocolVersion < 3 )
2051
2051
{
@@ -2054,12 +2054,12 @@ public async Task<SftpFileSytemInformation> RequestStatVfsAsync(string path, Can
2054
2054
2055
2055
cancellationToken . ThrowIfCancellationRequested ( ) ;
2056
2056
2057
- var tcs = new TaskCompletionSource < SftpFileSytemInformation > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
2057
+ var tcs = new TaskCompletionSource < SftpFileSystemInformation > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
2058
2058
2059
2059
#if NET || NETSTANDARD2_1_OR_GREATER
2060
- await using ( cancellationToken . Register ( s => ( ( TaskCompletionSource < SftpFileSytemInformation > ) s ) . TrySetCanceled ( cancellationToken ) , tcs , useSynchronizationContext : false ) . ConfigureAwait ( continueOnCapturedContext : false ) )
2060
+ await using ( cancellationToken . Register ( s => ( ( TaskCompletionSource < SftpFileSystemInformation > ) s ) . TrySetCanceled ( cancellationToken ) , tcs , useSynchronizationContext : false ) . ConfigureAwait ( continueOnCapturedContext : false ) )
2061
2061
#else
2062
- using ( cancellationToken . Register ( s => ( ( TaskCompletionSource < SftpFileSytemInformation > ) s ) . TrySetCanceled ( cancellationToken ) , tcs , useSynchronizationContext : false ) )
2062
+ using ( cancellationToken . Register ( s => ( ( TaskCompletionSource < SftpFileSystemInformation > ) s ) . TrySetCanceled ( cancellationToken ) , tcs , useSynchronizationContext : false ) )
2063
2063
#endif // NET || NETSTANDARD2_1_OR_GREATER
2064
2064
{
2065
2065
SendRequest ( new StatVfsRequest ( ProtocolVersion ,
@@ -2079,10 +2079,10 @@ public async Task<SftpFileSytemInformation> RequestStatVfsAsync(string path, Can
2079
2079
/// <param name="handle">The file handle.</param>
2080
2080
/// <param name="nullOnError">if set to <see langword="true"/> [null on error].</param>
2081
2081
/// <returns>
2082
- /// A <see cref="SftpFileSytemInformation "/> for the specified path.
2082
+ /// A <see cref="SftpFileSystemInformation "/> for the specified path.
2083
2083
/// </returns>
2084
2084
/// <exception cref="NotSupportedException">This operation is not supported for the current SFTP protocol version.</exception>
2085
- internal SftpFileSytemInformation RequestFStatVfs ( byte [ ] handle , bool nullOnError = false )
2085
+ internal SftpFileSystemInformation RequestFStatVfs ( byte [ ] handle , bool nullOnError = false )
2086
2086
{
2087
2087
if ( ProtocolVersion < 3 )
2088
2088
{
@@ -2091,7 +2091,7 @@ internal SftpFileSytemInformation RequestFStatVfs(byte[] handle, bool nullOnErro
2091
2091
2092
2092
SshException exception = null ;
2093
2093
2094
- SftpFileSytemInformation information = null ;
2094
+ SftpFileSystemInformation information = null ;
2095
2095
2096
2096
using ( var wait = new AutoResetEvent ( initialState : false ) )
2097
2097
{
0 commit comments