aboutsummaryrefslogtreecommitdiffstats
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
commit413e0a570cff0c91778e85d407a5727a5bba44bf (patch)
tree6ae0610906e8bc099662e751197b1cd5650d87ab /lib
parent0ff75dc3416565bcbb25925b0d3581418262fedb (diff)
downloadruby-413e0a570cff0c91778e85d407a5727a5bba44bf.tar.gz
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