From 260cc4ad10a4c8ef03efcb7f4f551761de2548b3 Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Thu, 17 Aug 2017 00:43:30 +0200 Subject: [PATCH] fixed little mistake in custom theme example --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 943f0e3..58e4064 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ func (dt *MyCustomTheme) HTMLTemplate() string { return "" } -func (dt *Default) PlainTextTemplate() string { +func (dt *MyCustomTheme) PlainTextTemplate() string { // Get the template from a file (if you want to be able to change the template live without retstarting your application) // Or write the template by returning pure string here (if you want embbeded template and do not bother with external dependencies) return ""