fix typo!

This commit is contained in:
Petr Korolev 2014-11-07 18:24:02 +02:00
parent 606fab4289
commit 502ae431b7

View File

@ -234,23 +234,23 @@ class ChangelogGenerator
if issues
issues.each { |dict|
is_bug = false
is_enchantment = false
is_enhancement = false
dict.labels.each { |label|
if label.name == 'bug'
is_bug = true
end
if label.name == 'enchantment'
is_enchantment = true
if label.name == 'enhancement'
is_enhancement = true
end
}
intro = 'Fixed issue'
intro = 'Closed issue'
if is_bug
intro = 'Fixed bug'
end
if is_enchantment
intro = 'Implemented enchantment'
if is_enhancement
intro = 'Implemented enhancement'
end
merge = "*#{intro}:* #{dict[:title]} [\\##{dict[:number]}](https://github.com/#{@options[:user]}/#{@options[:project]}/issues/#{dict[:number]})\n\n"