@@ -1987,9 +1987,9 @@ public void RequestPosixRename(string oldPath, string newPath)
19871987 /// <param name="path">The path.</param>
19881988 /// <param name="nullOnError">if set to <see langword="true"/> [null on error].</param>
19891989 /// <returns>
1990- /// A <see cref="SftpFileSytemInformation "/> for the specified path.
1990+ /// A <see cref="SftpFileSystemInformation "/> for the specified path.
19911991 /// </returns>
1992- public SftpFileSytemInformation RequestStatVfs ( string path , bool nullOnError = false )
1992+ public SftpFileSystemInformation RequestStatVfs ( string path , bool nullOnError = false )
19931993 {
19941994 if ( ProtocolVersion < 3 )
19951995 {
@@ -1998,7 +1998,7 @@ public SftpFileSytemInformation RequestStatVfs(string path, bool nullOnError = f
19981998
19991999 SshException exception = null ;
20002000
2001- SftpFileSytemInformation information = null ;
2001+ SftpFileSystemInformation information = null ;
20022002
20032003 using ( var wait = new AutoResetEvent ( initialState : false ) )
20042004 {
@@ -2045,7 +2045,7 @@ public SftpFileSytemInformation RequestStatVfs(string path, bool nullOnError = f
20452045 /// <see cref="Task{Task}.Result"/> contains the file system information for the specified
20462046 /// path.
20472047 /// </returns>
2048- public async Task < SftpFileSytemInformation > RequestStatVfsAsync ( string path , CancellationToken cancellationToken )
2048+ public async Task < SftpFileSystemInformation > RequestStatVfsAsync ( string path , CancellationToken cancellationToken )
20492049 {
20502050 if ( ProtocolVersion < 3 )
20512051 {
@@ -2054,12 +2054,12 @@ public async Task<SftpFileSytemInformation> RequestStatVfsAsync(string path, Can
20542054
20552055 cancellationToken . ThrowIfCancellationRequested ( ) ;
20562056
2057- var tcs = new TaskCompletionSource < SftpFileSytemInformation > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
2057+ var tcs = new TaskCompletionSource < SftpFileSystemInformation > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
20582058
20592059#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 ) )
20612061#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 ) )
20632063#endif // NET || NETSTANDARD2_1_OR_GREATER
20642064 {
20652065 SendRequest ( new StatVfsRequest ( ProtocolVersion ,
@@ -2079,10 +2079,10 @@ public async Task<SftpFileSytemInformation> RequestStatVfsAsync(string path, Can
20792079 /// <param name="handle">The file handle.</param>
20802080 /// <param name="nullOnError">if set to <see langword="true"/> [null on error].</param>
20812081 /// <returns>
2082- /// A <see cref="SftpFileSytemInformation "/> for the specified path.
2082+ /// A <see cref="SftpFileSystemInformation "/> for the specified path.
20832083 /// </returns>
20842084 /// <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 )
20862086 {
20872087 if ( ProtocolVersion < 3 )
20882088 {
@@ -2091,7 +2091,7 @@ internal SftpFileSytemInformation RequestFStatVfs(byte[] handle, bool nullOnErro
20912091
20922092 SshException exception = null ;
20932093
2094- SftpFileSytemInformation information = null ;
2094+ SftpFileSystemInformation information = null ;
20952095
20962096 using ( var wait = new AutoResetEvent ( initialState : false ) )
20972097 {
0 commit comments