hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 58ce9213c003dbe692f1407a7f93c3e869b37f9a
parent ae3039b6e81149db3ae037e45fb1fc8642354f1b
Author: Anthony Fok <foka@debian.org>
Date:   Wed, 21 Jun 2017 13:17:50 -0600

releaser: Fix typo, change "relase" to "release"

Diffstat:
Mreleaser/releasenotes_writer.go | 10+++++-----
Mreleaser/releaser.go | 6+++---
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/releaser/releasenotes_writer.go b/releaser/releasenotes_writer.go
@@ -39,7 +39,7 @@ const (
 {{ if eq (len .All) 1 }}
 This is a bug-fix release with one important fix.
 {{ else }}
-This is a bug-fix relase with a couple of important fixes.
+This is a bug-fix release with a couple of important fixes.
 {{ end }}
 {{ else }}
 This release represents **{{ len .All }} contributions by {{ len $contribsPerAuthor }} contributors** to the main Hugo code base.
@@ -185,16 +185,16 @@ func writeReleaseNotesToTmpFile(version string, infos gitInfos) (string, error) 
 	return f.Name(), nil
 }
 
-func getRelaseNotesDocsTempDirAndName(version string) (string, string) {
+func getReleaseNotesDocsTempDirAndName(version string) (string, string) {
 	return hugoFilepath("temp"), fmt.Sprintf("%s-relnotes.md", version)
 }
 
-func getRelaseNotesDocsTempFilename(version string) string {
-	return filepath.Join(getRelaseNotesDocsTempDirAndName(version))
+func getReleaseNotesDocsTempFilename(version string) string {
+	return filepath.Join(getReleaseNotesDocsTempDirAndName(version))
 }
 
 func writeReleaseNotesToTemp(version string, infos gitInfos) (string, error) {
-	docsTempPath, name := getRelaseNotesDocsTempDirAndName(version)
+	docsTempPath, name := getReleaseNotesDocsTempDirAndName(version)
 	os.Mkdir(docsTempPath, os.ModePerm)
 
 	f, err := os.Create(filepath.Join(docsTempPath, name))
diff --git a/releaser/releaser.go b/releaser/releaser.go
@@ -33,7 +33,7 @@ const commitPrefix = "releaser:"
 type ReleaseHandler struct {
 	patch int
 
-	// If set, we do the relases in 3 steps:
+	// If set, we do the releases in 3 steps:
 	// 1: Create and write a draft release notes
 	// 2: Prepare files for new version.
 	// 3: Release
@@ -167,7 +167,7 @@ func (r *ReleaseHandler) Run() error {
 		return nil
 	}
 
-	releaseNotesFile := getRelaseNotesDocsTempFilename(version)
+	releaseNotesFile := getReleaseNotesDocsTempFilename(version)
 
 	// Write the release notes to the docs site as well.
 	docFile, err := writeReleaseNotesToDocs(version, releaseNotesFile)
@@ -178,7 +178,7 @@ func (r *ReleaseHandler) Run() error {
 	if _, err := git("-C", "docs", "add", docFile); err != nil {
 		return err
 	}
-	if _, err := git("-C", "docs", "commit", "-m", fmt.Sprintf("%s Add relase notes to /docs for release of %s\n\n[ci skip]", commitPrefix, newVersion)); err != nil {
+	if _, err := git("-C", "docs", "commit", "-m", fmt.Sprintf("%s Add release notes to /docs for release of %s\n\n[ci skip]", commitPrefix, newVersion)); err != nil {
 		return err
 	}