From 7b2bcc19cd4ea420b41b09aa12a53b4260a25ce6 Mon Sep 17 00:00:00 2001 From: Gerasimos Maropoulos Date: Sun, 13 Nov 2016 11:12:59 +0200 Subject: [PATCH] Fix url typo as reported here: https://github.com/kataras/iris/issues/531 --- iris.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iris.go b/iris.go index 4f19f444..08fd6412 100644 --- a/iris.go +++ b/iris.go @@ -537,7 +537,7 @@ func (s *Framework) ListenTLS(addr string, certFile, keyFile string) { // if you skip the second parameter then the cache file is "./letsencrypt.cache" // if you want to disable cache then simple pass as second argument an empty empty string "" // -// example: https://github.com/iris-contrib/examples/blob/master/letsencyrpt/main.go +// example: https://github.com/iris-contrib/examples/blob/master/letsencrypt/main.go // // supports localhost domains for testing, // NOTE: if you are ready for production then use `$app.Serve(iris.LETSENCRYPTPROD("mydomain.com"))` instead @@ -552,7 +552,7 @@ func ListenLETSENCRYPT(addr string, cacheFileOptional ...string) { // if you skip the second parameter then the cache file is "./letsencrypt.cache" // if you want to disable cache then simple pass as second argument an empty empty string "" // -// example: https://github.com/iris-contrib/examples/blob/master/letsencyrpt/main.go +// example: https://github.com/iris-contrib/examples/blob/master/letsencrypt/main.go // // supports localhost domains for testing, // NOTE: if you are ready for production then use `$app.Serve(iris.LETSENCRYPTPROD("mydomain.com"))` instead