Subject: | Typo in "Using Non-Blocking Sockets" example |
Hi,
I believe the example code in "Using Non-Blocking Sockets" contains a typo.
Line 691 contains:
die $! if not ${EWOULDBLOCK};
I believe this should be:
die $! if not $!{EWOULDBLOCK};
Bram