1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

API doc fixes [ci skip]

This commit is contained in:
strcmp 2015-07-28 05:13:13 +01:00
parent e295cf4a17
commit c2169eb245

View file

@ -52,6 +52,8 @@ module Pry::Config::Behavior
@lookup[key] or (@default and @default[key])
end
#
# Add a key and value pair to self.
#
# @param [String] key
# a key (as a String).
@ -74,7 +76,7 @@ module Pry::Config::Behavior
# Removes a key from self.
#
# @param [String] key
# A key (as a String)
# a key (as a String)
#
# @return [void]
#
@ -85,7 +87,7 @@ module Pry::Config::Behavior
#
# @param [Hash, #to_h, #to_hash] other
# A hash to merge into self.
# a hash to merge into self.
#
# @return [void]
#
@ -99,7 +101,7 @@ module Pry::Config::Behavior
#
# @param [Hash, #to_h, #to_hash] other
# A hash to compare against the lookup table of self.
# a hash to compare against the lookup table of self.
#
def ==(other)
@lookup == __try_convert_to_hash(other)