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:
parent
e295cf4a17
commit
c2169eb245
1 changed files with 5 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue