From 13c9006667d11489db0c79e663385d3e0aad66c1 Mon Sep 17 00:00:00 2001 From: emacser Date: Thu, 5 Oct 2023 20:22:17 +0900 Subject: [PATCH] vweb: fix typo in vweb.v (#19513) --- vlib/vweb/vweb.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }