1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

docs/_plugins/highlight_alt.rb: Use correct tag name in error message

This commit is contained in:
Chris Rebert 2016-06-19 23:01:10 -07:00
parent b17008c771
commit c700e25ef2

View file

@ -30,11 +30,11 @@ module Jekyll
@options[:linenos] = "inline" if @options.key?(:linenos) and @options[:linenos] == true
else
raise SyntaxError.new <<-eos
Syntax Error in tag 'highlight' while parsing the following markup:
Syntax Error in tag 'example' while parsing the following markup:
#{markup}
Valid syntax: highlight <lang> [linenos]
Valid syntax: example <lang>
eos
end
end