Skip to content

Commit

Permalink
Use single quotes in color.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
jremes-foss authored and stympy committed Sep 8, 2016
1 parent fed61e9 commit 2c0e655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/faker/color.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Faker
class Color < Base
class << self
def hex_color
@hex_color = "#%06x" % (rand * 0xffffff)
@hex_color = '#%06x' % (rand * 0xffffff)
end

def color_name
Expand Down

0 comments on commit 2c0e655

Please sign in to comment.