Skip to content

Commit

Permalink
Merge pull request #10 from ninoseki/fix-typos
Browse files Browse the repository at this point in the history
chore: fix typos
  • Loading branch information
ninoseki committed Jul 4, 2019
2 parents 2c13603 + f81116e commit 087df25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/kokki/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def self.start(input)
puts e.message
end
else
puts "Input not found: plase give a word to convert."
puts "Input not found: please give a word to convert."
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/kokki/converter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def convert
flag ||= dict.lookup_by_name(upcase)
flag ||= convert_as_ip_address(input)

raise InvalidInputError, "invalid input: #{input}" unless flag
raise InvalidInputError, "Invalid input given: #{input}" unless flag

flag
end
Expand Down

0 comments on commit 087df25

Please sign in to comment.