Fix method name typo

This commit is contained in:
tuexss
2015-03-26 21:47:17 +01:00
parent 9d43384198
commit 2c8ba4965b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#! /usr/bin/env ruby #! /usr/bin/env ruby
require_relative '../lib/github_changelog_generator' require_relative '../lib/github_changelog_generator'
GitHubChangelogGenerator::ChangelogGenerator.new.compund_changelog GitHubChangelogGenerator::ChangelogGenerator.new.compound_changelog
+2 -2
View File
@@ -176,7 +176,7 @@ module GitHubChangelogGenerator
filtered_pull_requests filtered_pull_requests
end end
def compund_changelog def compound_changelog
log = "# Change Log\n\n" log = "# Change Log\n\n"
if @options[:unreleased_only] if @options[:unreleased_only]
@@ -635,6 +635,6 @@ module GitHubChangelogGenerator
end end
if __FILE__ == $PROGRAM_NAME if __FILE__ == $PROGRAM_NAME
GitHubChangelogGenerator::ChangelogGenerator.new.compund_changelog GitHubChangelogGenerator::ChangelogGenerator.new.compound_changelog
end end
end end