summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-23 08:10:44 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-23 08:10:44 +0000
commitc0bc825b50bd4fa6c7f7c7f93453a6c2db92ac52 (patch)
tree6ae0610906e8bc099662e751197b1cd5650d87ab /lib
parentc0652defae7d5d508a54d400934d36c2fbccef4d (diff)
lib/net/ftp: fix typo
* lib/net/ftp.rb (shutdown): fix typo git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56883 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/ftp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb
index e2bf1b29fc..d33085331c 100644
--- a/lib/net/ftp.rb
+++ b/lib/net/ftp.rb
@@ -1450,7 +1450,7 @@ module Net
def shutdown(*args)
# SSL_shutdown() will be called from SSLSocket#close, and
- # SSL_shutdonw() will send the "close notify" alert to the peer,
+ # SSL_shutdown() will send the "close notify" alert to the peer,
# so shutdown(2) should not be called.
@is_shutdown = true
end