diff --git a/doc/Language/structures.pod6 b/doc/Language/structures.pod6 index 81e99e125..72113311c 100644 --- a/doc/Language/structures.pod6 +++ b/doc/Language/structures.pod6 @@ -279,11 +279,11 @@ say %hash-plus.sort[0]; # OUTPUT: «3 => 33» say %hash-plus.last; # OUTPUT: «4 => 44» =end code -In C we use the universal C variable to refer to -whatever object this particular role is mixed in; in this case it will -contain the hash it is mixed in with; it will contain something else -(and possibly work some other way) in other case. This role will provide -the C method to any variable it's mixed with, providing new, +In C we use the universal C variable to refer to whatever object +this particular role is mixed in; in this case it will contain the hash it is +mixed in with; it will contain something else (and possibly work some other way) +in other case. This role will provide the C method to any variable it's +mixed with, providing new, attachable, functionalities to I variables. L can also be used to constrain the possible values a variable might hold; they are Perl 6 attempt at