* ext/openssl/ossl_ssl.c: Add missing paren in rdoc [Fix GH-321]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-05-31 07:02:11 +00:00
parent 8ea0e6f1fd
commit ee0478bce9
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri May 31 15:56:36 2013 Zachary Scott <zachary@zacharyscott.net>
* ext/openssl/ossl_ssl.c: Add missing paren in rdoc [Fix GH-321]
Fri May 31 11:58:24 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_method.c (set_visibility): extract from rb_mod_public(),

View File

@ -1135,7 +1135,7 @@ ossl_ssl_s_alloc(VALUE klass)
* SSLSocket.new(io, ctx) => aSSLSocket
*
* Creates a new SSL socket from +io+ which must be a real ruby object (not an
* IO-like object that responds to read/write.
* IO-like object that responds to read/write).
*
* If +ctx+ is provided the SSL Sockets initial params will be taken from
* the context.