shithub: hugo

Download patch

ref: 640121423ca830b6062ef7bc4edab8dbf4b5411d
parent: 46342ad5e80b6a92177acdf19cbab9d918b9e472
author: Cameron Moore <[email protected]>
date: Tue Aug 16 18:26:19 EDT 2016

tpl: Fix typos in tests

Closes #2370

--- a/tpl/template_funcs_test.go
+++ b/tpl/template_funcs_test.go
@@ -768,7 +768,7 @@
 	}{
 		{"a, b", ", ", []string{"a", "b"}},
 		{"a & b & c", " & ", []string{"a", "b", "c"}},
-		{"http://exmaple.com", "http://", []string{"", "exmaple.com"}},
+		{"http://example.com", "http://", []string{"", "example.com"}},
 		{123, "2", []string{"1", "3"}},
 		{tstNoStringer{}, ",", false},
 	} {
@@ -862,7 +862,7 @@
 func (x TstX) MethodReturnNothing() {}
 
 func (x TstX) MethodReturnErrorOnly() error {
-	return errors.New("something error occured")
+	return errors.New("some error occurred")
 }
 
 func (x TstX) MethodReturnTwoValues() (string, string) {
@@ -870,7 +870,7 @@
 }
 
 func (x TstX) MethodReturnValueWithError() (string, error) {
-	return "", errors.New("something error occured")
+	return "", errors.New("some error occurred")
 }
 
 func (x TstX) String() string {