Fix function comments

This commit is contained in:
Nise Void 2018-11-30 14:48:07 +01:00
parent 0990f5bafe
commit 890ff550eb
Signed by: NiseVoid
GPG key ID: FBA14AC83EA602F3
3 changed files with 8 additions and 3 deletions

View file

@ -4,6 +4,7 @@ import (
"io"
)
// Renderer renders a template
type Renderer interface {
Render(w io.Writer, template string, data interface{}, c *Context) error
}