We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca3ea2b commit 7124341Copy full SHA for 7124341
doc/Language/faq.pod
@@ -281,7 +281,7 @@ If you want to do it anyway, you can abuse autothreading for that:
281
282
=head2 If Str is immutable, how does C<s///> work? if Int is immutable, how does C<$i++> work?
283
284
-In Perl 6, many basic types are immutable, but the variables holding them are
+In Perl 6, values of many basic types are immutable, but the variables holding them are
285
not. The C<s///> operator works on a variable, into which it puts a newly
286
created string object. Likewise C<$i++> works on the C<$i> variable, not
287
just on the value in it.
0 commit comments