Unverified Commit 982888ed authored by Matt Farina's avatar Matt Farina Committed by GitHub

Merge pull request #6514 from shuroc/master

fixed typo
parents 0b229bdd 8648ccf5
...@@ -267,7 +267,7 @@ func (e *Engine) renderWithReferences(tpls map[string]renderable, referenceTpls ...@@ -267,7 +267,7 @@ func (e *Engine) renderWithReferences(tpls map[string]renderable, referenceTpls
rendered = make(map[string]string, len(files)) rendered = make(map[string]string, len(files))
var buf bytes.Buffer var buf bytes.Buffer
for _, file := range files { for _, file := range files {
// Don't render partials. We don't care out the direct output of partials. // Don't render partials. We don't care about the direct output of partials.
// They are only included from other templates. // They are only included from other templates.
if strings.HasPrefix(path.Base(file), "_") { if strings.HasPrefix(path.Base(file), "_") {
continue continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment