Skip to content

Commit 8193b73

Browse files
authored
Merge pull request #472 from ruby/typo
Fix typos [ci skip]
2 parents c74362c + 708ebf2 commit 8193b73

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

History.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Bug fixes
113113
[[GitHub #453]](https://github.com/ruby/openssl/pull/453)
114114
* Fix misuse of input record separator in `OpenSSL::Buffering` where it was
115115
for output.
116-
* Fix wrong interger casting in `OpenSSL::PKey::EC#dsa_verify_asn1`.
116+
* Fix wrong integer casting in `OpenSSL::PKey::EC#dsa_verify_asn1`.
117117
[[GitHub #460]](https://github.com/ruby/openssl/pull/460)
118118
* `extconf.rb` explicitly checks that OpenSSL's version number is 1.0.1 or
119119
newer but also less than 3.0. Ruby/OpenSSL v2.1.x and v2.2.x will not support

ext/openssl/ossl_ocsp.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ add_status_convert_time(VALUE obj)
803803
* revocation, and must be one of OpenSSL::OCSP::REVOKED_STATUS_* constants.
804804
* _revocation_time_ is the time when the certificate is revoked.
805805
*
806-
* _this_update_ and _next_update_ indicate the time at which ths status is
806+
* _this_update_ and _next_update_ indicate the time at which the status is
807807
* verified to be correct and the time at or before which newer information
808808
* will be available, respectively. _next_update_ is optional.
809809
*

test/openssl/test_asn1.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def test_decode_x509_certificate
170170
str = +"\000"; str[0] = 0b00000110.chr
171171
assert_equal(str, extv.value)
172172

173-
ext = extensions.value[0].value[2] # subjetKeyIdentifier
173+
ext = extensions.value[0].value[2] # subjectKeyIdentifier
174174
assert_equal(OpenSSL::ASN1::Sequence, ext.class)
175175
assert_equal(2, ext.value.size)
176176
assert_equal(OpenSSL::ASN1::ObjectId, ext.value[0].class)

0 commit comments

Comments
 (0)