Fix trivial typos in code

This commit is contained in:
Anthony Fok
2015-11-16 07:15:17 -07:00
parent 452ffab461
commit 18a29964fa
4 changed files with 6 additions and 6 deletions

View File

@@ -66,14 +66,14 @@ func T() Template {
return tmpl
}
// Resets the internal template state to it's initial state
// InitializeT resets the internal template state to its initial state
func InitializeT() Template {
tmpl = New()
return tmpl
}
// Return a new Hugo Template System
// With all the additional features, templates & functions
// New returns a new Hugo Template System
// with all the additional features, templates & functions
func New() Template {
var templates = &GoHTMLTemplate{
Template: *template.New(""),