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

View File

@ -1,4 +1,4 @@
#! /usr/bin/env ruby
require_relative '../lib/github_changelog_generator'
GitHubChangelogGenerator::ChangelogGenerator.new.compund_changelog
GitHubChangelogGenerator::ChangelogGenerator.new.compound_changelog

View File

@ -176,7 +176,7 @@ module GitHubChangelogGenerator
filtered_pull_requests
end
def compund_changelog
def compound_changelog
log = "# Change Log\n\n"
if @options[:unreleased_only]
@ -635,6 +635,6 @@ module GitHubChangelogGenerator
end
if __FILE__ == $PROGRAM_NAME
GitHubChangelogGenerator::ChangelogGenerator.new.compund_changelog
GitHubChangelogGenerator::ChangelogGenerator.new.compound_changelog
end
end