Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
hyper infix ambig with hyper postfix
  • Loading branch information
TimToady committed Mar 26, 2015
1 parent eed14ff commit eca749d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion S09-subscript/slice.t
Expand Up @@ -51,7 +51,7 @@ plan 31;
my %slice = (0=>3, 1=>7, 2=>9);
is((3,7,9), [@array[%slice.keys].sort], "values from hash keys, part 1");
is((3,7,9), [@array[%slice.keys.sort]], "values from hash keys, part 2");
is((3,7,9), [@array[(0,1,1)>>+<<(0,0,1)]], "calculated slice: hyperop");
is((3,7,9), [@array[(0,1,1) >>+<< (0,0,1)]], "calculated slice: hyperop");
}


Expand Down
2 changes: 1 addition & 1 deletion S32-hash/slice.t
Expand Up @@ -125,6 +125,6 @@ Quoting Larry:

is(@s, [%hash{%hash.keys}.sort], "values from hash keys, part 1");
is(@s, [%hash{%hash.keys.sort}], "values from hash keys, part 2");
is(@s, [%hash{(1,2,3)>>+<<(0,1,2)}], "calculated slice: hyperop");
is(@s, [%hash{(1,2,3) >>+<< (0,1,2)}], "calculated slice: hyperop");
}
#vim: ft=perl6

0 comments on commit eca749d

Please sign in to comment.