shithub: hugo

Download patch

ref: 914e4d85350521f417c8b844824c73398fa9561e
parent: 93f3a85bf8d13d0c8cb8844594c79a46d8bfa581
author: digitalcraftsman <[email protected]>
date: Thu Aug 4 10:37:15 EDT 2016

tpl: Fix typo in FindRE test

--- a/tpl/template_funcs_test.go
+++ b/tpl/template_funcs_test.go
@@ -1930,11 +1930,11 @@
 		expect  []string
 		ok      bool
 	}{
-		{"[G|g]o", "Hugo is a static side generator written in Go.", 2, []string{"go", "Go"}, true},
-		{"[G|g]o", "Hugo is a static side generator written in Go.", -1, []string{"go", "Go"}, true},
-		{"[G|g]o", "Hugo is a static side generator written in Go.", 1, []string{"go"}, true},
-		{"[G|g]o", "Hugo is a static side generator written in Go.", 0, []string(nil), true},
-		{"[G|go", "Hugo is a static side generator written in Go.", 0, []string(nil), false},
+		{"[G|g]o", "Hugo is a static site generator written in Go.", 2, []string{"go", "Go"}, true},
+		{"[G|g]o", "Hugo is a static site generator written in Go.", -1, []string{"go", "Go"}, true},
+		{"[G|g]o", "Hugo is a static site generator written in Go.", 1, []string{"go"}, true},
+		{"[G|g]o", "Hugo is a static site generator written in Go.", 0, []string(nil), true},
+		{"[G|go", "Hugo is a static site generator written in Go.", 0, []string(nil), false},
 	} {
 		res, err := findRE(this.expr, this.content, this.limit)