Skip to content

Commit

Permalink
vweb: fix typo in vweb.v (#19513)
Browse files Browse the repository at this point in the history
  • Loading branch information
emacser0 committed Oct 5, 2023
1 parent e87d743 commit 13c9006
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vlib/vweb/vweb.v
Expand Up @@ -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 }
Expand Down

0 comments on commit 13c9006

Please sign in to comment.