diff --git a/ext/openssl/ossl_pkey.c b/ext/openssl/ossl_pkey.c index e8cccf4fb..c6b6635cc 100644 --- a/ext/openssl/ossl_pkey.c +++ b/ext/openssl/ossl_pkey.c @@ -599,7 +599,7 @@ pkey_from_parameters(int argc, VALUE *argv, VALUE self) * * Generates new parameters for the algorithm. _algo_name_ is a String that * represents the algorithm. The optional argument _options_ is a Hash that - * specifies the options specific to the algorithm. The order of the options + * specifies the options specific to the algorithm. The orderq of the options * can be important. * * A block can be passed optionally. The meaning of the arguments passed to @@ -664,7 +664,6 @@ ossl_pkey_s_generate_key(int argc, VALUE *argv, VALUE self) static VALUE ossl_pkey_s_from_parameters(int argc, VALUE *argv, VALUE self) { - // TODO: A version that works with OpenSSL 1.1 #if OSSL_OPENSSL_PREREQ(3, 0, 0) return pkey_from_parameters(argc, argv, self); #else