fix indentation in README.md

This commit is contained in:
syumai 2022-05-18 00:07:25 +09:00
parent bd1ab33600
commit 1a6eb323ff

View File

@ -23,7 +23,7 @@ implement your http.Handler and give it to `workers.Serve()`.
```go
func main() {
var handler http.HandlerFunc = func (w http.ResponseWriter, req *http.Request) { ... }
workers.Serve(handler)
workers.Serve(handler)
}
```