Skip to content

Commit

Permalink
Merge pull request #2400 from keita-hino/fix-typo-in-readme
Browse files Browse the repository at this point in the history
Fixed typo in README
  • Loading branch information
dblock authored Jan 3, 2024
2 parents aec6965 + 5845463 commit 91eec1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1348,7 +1348,7 @@ class Color
end

def self.parse(value)
return new(value) if %w[blue red green]).include?(value)
return new(value) if %w[blue red green].include?(value)

Grape::Types::InvalidValue.new('Unsupported color')
end
Expand Down

0 comments on commit 91eec1a

Please sign in to comment.