From 944afa18a1973d0db13c320eaefee81d08c5cb4c Mon Sep 17 00:00:00 2001 From: hsbt Date: Sun, 13 Jul 2014 08:51:23 +0000 Subject: * ext/openssl/ossl_cipher.c: Fix call to ciphers class method and spell out `encryption` by @vipulnsward [fix GH-664] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/ossl_cipher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext') diff --git a/ext/openssl/ossl_cipher.c b/ext/openssl/ossl_cipher.c index df6fd10887..1cd185e69c 100644 --- a/ext/openssl/ossl_cipher.c +++ b/ext/openssl/ossl_cipher.c @@ -158,7 +158,7 @@ add_cipher_name_to_ary(const OBJ_NAME *name, VALUE ary) #ifdef HAVE_OBJ_NAME_DO_ALL_SORTED /* * call-seq: - * Cipher.ciphers -> array[string...] + * OpenSSL::Cipher.ciphers -> array[string...] * * Returns the names of all available ciphers in an array. */ @@ -183,7 +183,7 @@ ossl_s_ciphers(VALUE self) * cipher.reset -> self * * Fully resets the internal state of the Cipher. By using this, the same - * Cipher instance may be used several times for en- or decryption tasks. + * Cipher instance may be used several times for encryption or decryption tasks. * * Internally calls EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, -1). */ -- cgit v1.2.3