New is implied by `raise`, 2nd is the message.

This commit is contained in:
Jordon 2013-06-15 05:04:47 -05:00 committed by Garen Torikian
parent 4d017b4fed
commit 626d54a812
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ module Jekyll
else else
$stderr.puts "Invalid Markdown processor: #{@config['markdown']}" $stderr.puts "Invalid Markdown processor: #{@config['markdown']}"
$stderr.puts " Valid options are [ maruku | rdiscount | kramdown | redcarpet ]" $stderr.puts " Valid options are [ maruku | rdiscount | kramdown | redcarpet ]"
raise FatalException.new("Invalid Markdown process: #{@config['markdown']}") raise FatalException, "Invalid Markdown process: #{@config['markdown']}"
end end
@setup = true @setup = true
end end