1
0
mirror of https://github.com/labstack/echo.git synced 2025-03-17 21:08:05 +02:00

Merge pull request #303 from AlekSi/patch-1

Fix typo
This commit is contained in:
Vishal Rana 2016-01-26 08:01:24 -08:00
commit 145458fa7e

View File

@ -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")
```