Skip to content

Commit 8d9408d

Browse files
committed
rm space between proc keyword and params
1 parent ae6b923 commit 8d9408d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/custom_web_server/server.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import std/asyncdispatch
44
proc main {.async.} =
55
var server = newAsyncHttpServer()
66

7-
proc cb (req: Request) {.async.} =
7+
proc cb(req: Request) {.async.} =
88
# echo (req.reqMethod, req.url, req.headers)
99

1010
let headers = {"Content-type": "text/plain; charset=utf-8"}

0 commit comments

Comments
 (0)