Browse Source

Document that closing two times doesn't do anything

Davide D'Agostino 8 years ago
parent
commit
980e2e09a5
1 changed files with 1 additions and 0 deletions
  1. 1 0
      ftp.go

+ 1 - 0
ftp.go

@@ -537,6 +537,7 @@ func (r *Response) Read(buf []byte) (int, error) {
 }
 
 // Close implements the io.Closer interface on a FTP data connection.
+// After the first call, Close will do nothing and return nil.
 func (r *Response) Close() error {
 	if r.closed {
 		return nil