From 9c974279b0ea73930b0fce928000c6afaacffcc2 Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Thu, 31 Dec 2015 12:37:56 +0300 Subject: [PATCH] Fix typo --- website/content/guide/customization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/guide/customization.md b/website/content/guide/customization.md index f3ee7568..222ca52c 100644 --- a/website/content/guide/customization.md +++ b/website/content/guide/customization.md @@ -60,7 +60,7 @@ Enable/disable automatically creating an index page for the directory. ```go e := echo.New() e.AutoIndex(true) -e.ServerDir("/", "/Users/vr/Projects/echo") +e.ServeDir("/", "/Users/vr/Projects/echo") e.Run(":1323") ```