summaryrefslogtreecommitdiffstats
path: root/lib/openssl
diff options
context:
space:
mode:
authornobu <nobu@ruby-lang.org>2015-12-21 00:33:20 +0000
committernobu <nobu@ruby-lang.org>2015-12-21 00:33:20 +0000
commit432f1064fd7a0623ee9aa610fc797ff17bb85512 (patch)
tree4b747a2b35b6e29ba65eee84b90ae7892faed0de /lib/openssl
parentb5c5e75fdfaf9865a50ea342b375ef3ccb2e4954 (diff)
downloadruby-openssl-history-432f1064fd7a0623ee9aa610fc797ff17bb85512.tar.gz
NotImplementedError typo
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLSocket): fix NotImplementedError typo. [Fix GH-1165] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/openssl')
-rw-r--r--lib/openssl/ssl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/openssl/ssl.rb b/lib/openssl/ssl.rb
index 41a09f1..57519f2 100644
--- a/lib/openssl/ssl.rb
+++ b/lib/openssl/ssl.rb
@@ -251,7 +251,7 @@ module OpenSSL
include SocketForwarder
if ExtConfig::OPENSSL_NO_SOCK
- def initialize(io, ctx = nil); raise NotImplmentedError; end
+ def initialize(io, ctx = nil); raise NotImplementedError; end
else
if ExtConfig::HAVE_TLSEXT_HOST_NAME
attr_accessor :hostname