Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed trailing whitespace on two lines (maintain consistency)
  • Loading branch information
zoffixznet committed Mar 31, 2015
1 parent 221a53d commit b31bdbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Language/5to6.pod
Expand Up @@ -766,7 +766,7 @@ and L<C<[]> array subscripting|#[]_Array_indexing/slicing> operators.
my $deleted_value = delete $hash{$key}; # Perl 5
my $deleted_value = %hash{$key}:delete; # Perl 6 - use :delete adverb
my $deleted_value = delete $array[$i]; # Perl 5
my $deleted_value = @array[$i]:delete; # Perl 6 - use :delete adverb
Expand All @@ -778,7 +778,7 @@ and L<C<[]> array subscripting|#[]_Array_indexing/slicing> operators.
say "element exists" if exists $hash{$key}; # Perl 5
say "element exists" if %hash{$key}:exists; # Perl 6 - use :exists adverb
say "element exists" if exists $array[$i]; # Perl 5
say "element exists" if @array[$i]:exists; # Perl 6 - use :exists adverb
Expand Down

0 comments on commit b31bdbf

Please sign in to comment.