Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed incorrect result and typo
  • Loading branch information
Jan-Olof Hendig committed Sep 8, 2016
1 parent 9312a62 commit 261d5a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Language/operators.pod6
Expand Up @@ -202,7 +202,7 @@ There are shortcuts for C<!==> and C<!eq>, namely C<!=> and C<ne>.
my $release = Date.new(:2015year, :12month, :24day);
my $today = Date.today;
say so $release !before $today; # True
say so $release !before $today; # False
=head1 Reversed Operators
X<|R,reverse meta operator>
Expand Down Expand Up @@ -297,7 +297,7 @@ Hyper operators can take user defined operators as its operator argument.
# OUTPUT: «10 EB 4 EB 2 PB 5 PB 0.5 PB 4 TB 300 GB 4.5 GB 50 MB 200 MB 9 KB 0.6 MB»
Hyper operators do not descent into child lists. You can chain hyper operators
Hyper operators do not descend into child lists. You can chain hyper operators
to destructure a List of Lists.
my $neighbors = ((-1, 0), (0, -1), (0, 1), (1, 0));
Expand Down

0 comments on commit 261d5a2

Please sign in to comment.