From 3ce3936bca82e77bbec6f87baf14ee384e9a0ed8 Mon Sep 17 00:00:00 2001 From: Andrew Poydence Date: Tue, 4 Sep 2018 23:28:03 -0600 Subject: [PATCH] Fix typo in example --- _examples/timeseries/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_examples/timeseries/main.go b/_examples/timeseries/main.go index 9303ab7..8acccb0 100644 --- a/_examples/timeseries/main.go +++ b/_examples/timeseries/main.go @@ -79,7 +79,7 @@ func drawCustomChart(res http.ResponseWriter, req *http.Request) { func main() { http.HandleFunc("/", drawChart) - http.HandleFunc("/favico.ico", func(res http.ResponseWriter, req *http.Request) { + http.HandleFunc("/favicon.ico", func(res http.ResponseWriter, req *http.Request) { res.Write([]byte{}) }) http.HandleFunc("/custom", drawCustomChart)