diff --git a/doc/Language/operators.pod6 b/doc/Language/operators.pod6 index 5b47ac15b..0dfc08776 100644 --- a/doc/Language/operators.pod6 +++ b/doc/Language/operators.pod6 @@ -1976,7 +1976,7 @@ any arguments after a 2nd true result. say 0 ^^ 42; # OUTPUT: «42␤» say '' ^^ 0; # OUTPUT: «0␤» - say 0 ^^ 42 ^^ 1 ^^ die "never called"; # OUTPUT: «␤» + say 0 ^^ 42 ^^ 1 ^^ die "never called"; # OUTPUT: «Nil␤» Note that the semantics of this operator may not be what you assume: infix C«^^» flips to the first true value it finds and then flips to Nil I after the