# File lib/netrc.rb, line 150 def delete(key) datum = nil for value in @data if value[1] == key datum = value break end end @data.delete(datum) end