Skip to content

Commit cf6d904

Browse files
committed
Align server socket params to avoid long lines.
1 parent 80c1bc1 commit cf6d904

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

doc/Type/IO/Socket/INET.pod6

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ C<localhost>, port C<3333>:
1515
=begin code
1616
use v6.c;
1717
18-
my $listen = IO::Socket::INET.new(:listen, :localhost<localhost>, :localport(3333));
18+
my $listen = IO::Socket::INET.new( :listen,
19+
:localhost<localhost>,
20+
:localport(3333) );
1921
loop {
2022
my $conn = $listen.accept;
2123
while my $buf = $conn.recv(:bin) {

0 commit comments

Comments
 (0)