diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 16278b4520..ff06d7ee6c 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -1107,10 +1107,10 @@ fn new_worker[T](ch chan &RequestParams, id int) thread { id: id ch: ch } - return spawn w.process_incomming_requests[T]() + return spawn w.process_incoming_requests[T]() } -fn (mut w Worker[T]) process_incomming_requests() { +fn (mut w Worker[T]) process_incoming_requests() { sid := '[vweb] tid: ${w.id:03d} received request' for { mut params := <-w.ch or { break }