From d21ed816f275a417577e983d591a820a0f39e466 Mon Sep 17 00:00:00 2001 From: Lukas Wurzinger Date: Wed, 11 Dec 2024 05:50:41 +0100 Subject: [PATCH] remove old doc --- tplx.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tplx.go b/tplx.go index 70cdd36..02a6528 100644 --- a/tplx.go +++ b/tplx.go @@ -19,10 +19,6 @@ var ( ) // Renderer is an interface for rendering templates. -// -// Render writes the output of the specified template to the provided writer. The -// name parameter specifies the template to execute, data provides the context -// data for the template, and funcs provides additional template functions. type Renderer interface { Render(w io.Writer, name string, data any, funcs template.FuncMap) error }