Skip to content

Commit 7786df2

Browse files
committed
Clarifies behavior
1 parent 3be49a8 commit 7786df2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Type/Nil.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ assigning C<Nil> to a variable which has a default will restore that default.
126126
127127
method append(*@)
128128
129-
Warns the user that they tried to append onto a C<Nil>.
129+
Warns the user that they tried to append onto a C<Nil> (or derived type object).
130130
131131
=head2 method gist
132132
@@ -150,19 +150,19 @@ Returns C<Nil>
150150
151151
method prepend(*@)
152152
153-
Warns the user that they tried to prepend onto a C<Nil>.
153+
Warns the user that they tried to prepend onto a C<Nil> or derived type object.
154154
155155
=head2 method push
156156
157157
method push(*@)
158158
159-
Warns the user that they tried to push onto a C<Nil>.
159+
Warns the user that they tried to push onto a C<Nil> or derived type object.
160160
161161
=head2 method unshift
162162
163163
method unshift(*@)
164164
165-
Warns the user that they tried to unshift onto a C<Nil>.
165+
Warns the user that they tried to unshift onto a C<Nil> or derived type object.
166166
167167
=head2 method ords
168168

0 commit comments

Comments
 (0)