diff options
author | kojix2 <[email protected]> | 2024-10-31 12:44:50 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-31 12:44:50 +0900 |
commit | 550ac2f2edc07d1b63e3755233df0758a652b53f (patch) | |
tree | 500c2e14f9827a78b81d5187d88e2084f907227f /ext/openssl/ossl_bn.c | |
parent | 583587dfbf524b96593f5469d68c844c7297ba98 (diff) |
[DOC] Fix typos
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11967
Merged-By: nobu <[email protected]>
Diffstat (limited to 'ext/openssl/ossl_bn.c')
-rw-r--r-- | ext/openssl/ossl_bn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/ossl_bn.c b/ext/openssl/ossl_bn.c index 7393fdea56..2d310c4741 100644 --- a/ext/openssl/ossl_bn.c +++ b/ext/openssl/ossl_bn.c @@ -244,7 +244,7 @@ ossl_bn_alloc(VALUE klass) * number. * - +10+ - Decimal number representation, with a leading '-' for a negative * number. - * - +16+ - Hexadeciaml number representation, with a leading '-' for a + * - +16+ - Hexadecimal number representation, with a leading '-' for a * negative number. */ static VALUE @@ -326,7 +326,7 @@ ossl_bn_initialize(int argc, VALUE *argv, VALUE self) * the bignum is ignored. * - +10+ - Decimal number representation, with a leading '-' for a negative * bignum. - * - +16+ - Hexadeciaml number representation, with a leading '-' for a + * - +16+ - Hexadecimal number representation, with a leading '-' for a * negative bignum. */ static VALUE |