Fix sample code
@@ -15,7 +15,7 @@ Tiny http server engine written in Swift ( https://developer.apple.com/swift/ )
### How to start?
```swift
let server = HttpServer()
-server["/hello"] = { .OK(.HTML("You asked for " + $0.url)) }
+server["/hello"] = { .OK(.Html("You asked for " + $0.url)) }
server.start()
```
### How to share files?