1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Fixed typo

This commit is contained in:
kambrium 2019-08-15 20:14:49 +02:00 committed by Alexander Medvednikov
parent c0cc4701af
commit a5af903362

View File

@ -125,7 +125,7 @@ pub fn (s Socket) listen() ?int {
if res < 0 {
return error('socket: listen failed')
}
println('liisten res = $res')
println('listen res = $res')
return res
}