Skip to content

Commit 7124341

Browse files
committed
small clarification
1 parent ca3ea2b commit 7124341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/faq.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ If you want to do it anyway, you can abuse autothreading for that:
281281
282282
=head2 If Str is immutable, how does C<s///> work? if Int is immutable, how does C<$i++> work?
283283
284-
In Perl 6, many basic types are immutable, but the variables holding them are
284+
In Perl 6, values of many basic types are immutable, but the variables holding them are
285285
not. The C<s///> operator works on a variable, into which it puts a newly
286286
created string object. Likewise C<$i++> works on the C<$i> variable, not
287287
just on the value in it.

0 commit comments

Comments
 (0)