Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
point at postcircumfix:<{ }> for adverbs
  • Loading branch information
timo committed Jun 11, 2014
1 parent 1a3706c commit 243ef3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/Hash.pm
Expand Up @@ -113,11 +113,11 @@ my class Hash { # declared in BOOTSTRAP

proto method delete(|) { * }
multi method delete(Hash:U:) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED('the :delete adverb with postcircumfix:<{ }>');
self.delete_key;
}
multi method delete($key as Str) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :delete adverb");
DEPRECATED('the :delete adverb with postcircumfix:<{ }>');
self.delete_key($key);
}

Expand Down Expand Up @@ -364,7 +364,7 @@ my class Hash { # declared in BOOTSTRAP
bindval)
}
method exists (TKey \key) { # is DEPRECATED doesn't work in settings
DEPRECATED("the :exists adverb");
DEPRECATED('the :exists adverb with postcircumfix:<{ }>');
self.exists_key(key);
}
method exists_key(TKey \key) {
Expand Down

0 comments on commit 243ef3e

Please sign in to comment.