From b726c9964b442f0eb807a8cff9be3d2c39e63c68 Mon Sep 17 00:00:00 2001 From: "Christoffer G. Thomsen" Date: Thu, 14 May 2015 13:25:38 +0200 Subject: [PATCH] Fix package name: "http/template" -> "html/template" --- LearnServerProgramming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LearnServerProgramming.md b/LearnServerProgramming.md index d98a1389..928e3d15 100644 --- a/LearnServerProgramming.md +++ b/LearnServerProgramming.md @@ -17,7 +17,7 @@ This page links to resources for learning about server programming in Go. The it ## Presentation - [Package text/template](http://golang.org/pkg/text/template) implements data-driven templates for generating textual output. -- [Package http/template](http://golang.org/pkg/html/template) implements data-driven templates for generating HTML output safe against code injection. +- [Package html/template](http://golang.org/pkg/html/template) implements data-driven templates for generating HTML output safe against code injection. ## Profiling and Performance