Skip to content

Commit

Permalink
Fix TrailingComma.
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinlaking committed Apr 9, 2015
1 parent aa37bc2 commit 2220c16
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ YARD::Rake::YardocTask.new(:yard) do |t|
'-',
'docs/api.md',
'docs/getting_started.md',
'docs/views.md'
'docs/views.md',
]
end

Expand Down
2 changes: 1 addition & 1 deletion lib/vedeu/output/renderers/file_renderer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def options
# @return [Hash]
def defaults
{
timestamp: false
timestamp: false,
}
end

Expand Down
2 changes: 1 addition & 1 deletion lib/vedeu/output/style.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def initialize(value = nil)
# @return [Array<String|Symbol>|String|Symbol]
def attributes
{
style: value
style: value,
}
end

Expand Down
2 changes: 1 addition & 1 deletion lib/vedeu/output/translator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def css_to_rgb
[
colour[1..2].to_i(16),
colour[3..4].to_i(16),
colour[5..6].to_i(16)
colour[5..6].to_i(16),
]
end

Expand Down

0 comments on commit 2220c16

Please sign in to comment.