Fix error in exception message in Markdown Converter [ci skip]

This commit is contained in:
Parker Moore 2013-12-26 00:14:24 -05:00
parent 60b43104ee
commit 7b9984699c
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ module Jekyll
else
Jekyll.logger.error "Invalid Markdown Processor:", "#{@config['markdown']}"
Jekyll.logger.error "", "Valid options are [ maruku | rdiscount | kramdown | redcarpet ]"
raise FatalException, "Invalid Markdown process: #{@config['markdown']}"
raise FatalException, "Invalid Markdown Processor: #{@config['markdown']}"
end
end
@setup = true