Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
switch to .<> as more visually distinct decont
  • Loading branch information
TimToady committed Apr 2, 2015
1 parent 1602e1d commit d4fd249
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/Array.pm
Expand Up @@ -133,7 +133,7 @@ class Array { # declared in BOOTSTRAP
!! self.map({.perl}).join(', ')
)
~ ']'
~ '[]' x !nqp::iscont(SELF);
~ '<>' x !nqp::iscont(SELF);
}

method REIFY(Parcel \parcel, Mu \nextiter) {
Expand Down
2 changes: 1 addition & 1 deletion src/core/Hash.pm
Expand Up @@ -41,7 +41,7 @@ my class Hash { # declared in BOOTSTRAP

multi method perl(Hash:D \SELF:) {
'{' ~ SELF.pairs.sort.map({.perl}).join(', ') ~ '}'
~ '{}' x !nqp::iscont(SELF)
~ '<>' x !nqp::iscont(SELF)
}

multi method gist(Hash:D \SELF:) {
Expand Down

0 comments on commit d4fd249

Please sign in to comment.