summaryrefslogtreecommitdiff
path: root/ext/openssl/lib/openssl/config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/openssl/lib/openssl/config.rb')
-rw-r--r--ext/openssl/lib/openssl/config.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/openssl/lib/openssl/config.rb b/ext/openssl/lib/openssl/config.rb
index 9f5c6affac..5716d59fd6 100644
--- a/ext/openssl/lib/openssl/config.rb
+++ b/ext/openssl/lib/openssl/config.rb
@@ -29,12 +29,12 @@ module OpenSSL
class << self
##
- # Parses a given +str+ as a blob that contains configuration for openssl.
+ # Parses a given +string+ as a blob that contains configuration for openssl.
#
# If the source of the IO is a file, then consider using #parse_config.
- def parse(str)
+ def parse(string)
c = new()
- parse_config(StringIO.new(str)).each do |section, hash|
+ parse_config(StringIO.new(string)).each do |section, hash|
c[section] = hash
end
c