Skip to content

Commit e65755d

Browse files
committed
input-line-separator is now nl-in
1 parent 9767a51 commit e65755d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/Language/objects.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ return value of a method call. This is how read-writable attributes to
6565
objects are used:
6666
6767
=for code :allow<L>
68-
$*IN.L<input-line-separator> = "\r\n";
68+
$*IN.L<nl-in> = "\r\n";
6969
70-
Here, we are calling method C<input-line-separator> on the C<$*IN> object,
70+
Here, we are calling method C<nl-in> on the C<$*IN> object,
7171
without arguments, and assign to the container it returned with the
7272
L<C<=>|=> operator.
7373

doc/Type/IO/Socket/INET.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ $conn.close;
4444
:$port,
4545
:$family = 2,
4646
:$encoding = 'utf-8',
47-
:input-line-separator = "\n",
47+
:nl-in = "\n",
4848
) returns IO::Socket::INET:D
4949
multi method new(
5050
:$localhost,
5151
:$localport,
5252
:$family = 2,
5353
:$listen,
5454
:$encoding = 'utf-8',
55-
:input-line-separator = "\n",
55+
:nl-in = "\n",
5656
) returns IO::Socket::INET:D
5757
5858
Creates a new socket.

0 commit comments

Comments
 (0)