From 9b4210433b3944a107dac8826ee5e40b5c379312 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Thu, 2 Feb 2017 16:21:23 -0800 Subject: [PATCH] Fix typo in CHANGELOG. Fix #28613. R=kevmoo@google.com Review-Url: https://codereview.chromium.org/2674803002 . --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55d6471c28f..7b93c63ce2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ### Core library changes * `dart:core`: Add `Uri.isScheme` function to check the scheme of a URI. Example: `uri.isScheme("http")`. Ignores case when comparing. - + ## 1.22.0 ### Language @@ -82,7 +82,7 @@ ```dart Predator predator = new Cat(); // Upcast. - predator(new Seal()); // Cats can't eat seals! + predator.chaseAndEat(new Seal()); // Cats can't eat seals! ``` To preserve soundness in strong mode, in the body of a method that uses a