fix typo in dart:core.Map docs

BUG=
R=skybrian@google.com

Review URL: https://codereview.chromium.org/1393713002 .
This commit is contained in:
Harry Terkelsen 2015-10-06 19:03:24 -07:00
parent e40b231771
commit 2a053a9441

View file

@ -149,7 +149,7 @@ abstract class Map<K, V> {
/**
* Returns true if this map contains the given [key].
*
* Returns true if any of the keys in the map ar equal to `key`
* Returns true if any of the keys in the map are equal to `key`
* according to the equality used by the map.
*/
bool containsKey(Object key);