remove ifaces from doc (#430)

This commit is contained in:
Pedro Nasser
2016-12-13 19:36:56 -02:00
committed by Travis Reeder
parent 1247edbd04
commit f03619d479

View File

@@ -101,7 +101,7 @@ For example, let's use special handlers to define `mydomain` as the `appname` fo
```
type SpecialHandler struct{}
func (h *SpecialHandler) Handle(c ifaces.HandlerContext) error {
func (h *SpecialHandler) Handle(c server.HandlerContext) error {
host := c.Request().Host
if host == "mydomain.com" {
c.Set("app", "mydomain")