Update CHANGELOG.md

Fixes some grammatical errors

Closes https://github.com/dart-lang/sdk/pull/40729
https://github.com/dart-lang/sdk/pull/40729

GitOrigin-RevId: e3a580355e061b19885f8a48bbc641fd323bc010
Change-Id: I4fb31773e13c45754ec627095278730497e60b2d
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/136803
Reviewed-by: Kevin Moore <kevmoo@google.com>
Commit-Queue: Kevin Moore <kevmoo@google.com>
This commit is contained in:
Aman Kumar 2020-02-22 00:14:09 +00:00 committed by Kevin Moore
parent ceec05a2d3
commit 1cb77e8a00

View file

@ -785,7 +785,7 @@ The Linter was updated to `0.1.91`, which includes the following changes:
* `pub publish` will no longer warn about missing dependencies for import
statements in `example/`.
* OAuth2 authentication will explicitely ask for the `openid` scope.
* OAuth2 authentication will explicitly ask for the `openid` scope.
## 2.3.2 - 2019-06-11
@ -2179,7 +2179,7 @@ significant changes across all areas of the platform. Large changes include:
#### `dart:developer`
* `Flow` class added.
* `Timeline.startSync` and `Timeline.timeSync` now accept an optional
* `Timeline.startSync` and `Timeline.timeSync` now accepts an optional
parameter `flow` of type `Flow`. The `flow` parameter is used to generate
flow timeline events that are enclosed by the slice described by
`Timeline.{start,finish}Sync` and `Timeline.timeSync`.
@ -2668,7 +2668,7 @@ Still need entries for all changes to dart:web_audio,web_gl,web_sql since 1.x
#### Strong Mode
* Removed ad hoc `Future.then` inference in favor of using `FutureOr`. Prior to
adding `FutureOr` to the language, the analyzer implented an ad hoc type
adding `FutureOr` to the language, the analyzer implemented an ad hoc type
inference for `Future.then` (and overrides) treating it as if the onValue
callback was typed to return `FutureOr` for the purposes of inference.
This ad hoc inference has been removed now that `FutureOr` has been added.