1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/openssl] Fix some typos [ci skip]

https://github.com/ruby/openssl/commit/51b3030b2b
This commit is contained in:
Ryuta Kamizono 2021-04-26 00:31:08 +09:00 committed by Kazuki Yamaguchi
parent 593164c2be
commit 29ad4ab3d0
3 changed files with 3 additions and 3 deletions

View file

@ -392,7 +392,7 @@ ossl_debug_get(VALUE self)
* call-seq: * call-seq:
* OpenSSL.debug = boolean -> boolean * OpenSSL.debug = boolean -> boolean
* *
* Turns on or off debug mode. With debug mode, all erros added to the OpenSSL * Turns on or off debug mode. With debug mode, all errors added to the OpenSSL
* error queue will be printed to stderr. * error queue will be printed to stderr.
*/ */
static VALUE static VALUE

View file

@ -157,7 +157,7 @@ ossl_ocspcertid_new(OCSP_CERTID *cid)
} }
/* /*
* OCSP::Resquest * OCSP::Request
*/ */
static VALUE static VALUE
ossl_ocspreq_alloc(VALUE klass) ossl_ocspreq_alloc(VALUE klass)

View file

@ -1112,7 +1112,7 @@ ossl_sslctx_enable_fallback_scsv(VALUE self)
/* /*
* call-seq: * call-seq:
* ctx.add_certificate(certiticate, pkey [, extra_certs]) -> self * ctx.add_certificate(certificate, pkey [, extra_certs]) -> self
* *
* Adds a certificate to the context. _pkey_ must be a corresponding private * Adds a certificate to the context. _pkey_ must be a corresponding private
* key with _certificate_. * key with _certificate_.