From 1a6eb323ff58294c0aa310214e88a40086fd22c4 Mon Sep 17 00:00:00 2001 From: syumai Date: Wed, 18 May 2022 00:07:25 +0900 Subject: [PATCH] fix indentation in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 93595df..c29dae9 100644 --- a/README.md +++ b/README.md @@ -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) } ```