Skip to content

Commit d8b5015

Browse files
author
John Messerly
committed
minor usage and readme fixes
[email protected] Review URL: https://codereview.chromium.org/1451043002 .
1 parent 38fff5a commit d8b5015

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pkg/dev_compiler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ DDC has the following project goals:
2626
DDC is still in a very early stage as highlighted by our choice of ES6. ES6 itself is in active development across all modern browsers, but at various stages of support:
2727
[kangax.github.io/compat-table/es6](https://kangax.github.io/compat-table/es6/).
2828

29-
We are initially targeting the subset of ES6 supported in Chrome Canary.
29+
We are targeting the subset of ES6 supported in Chrome.
3030

3131
To try out DDC and/or give feedback, please read our [usage](https://github.com/dart-lang/dev_compiler/blob/master/USAGE.md) page.

pkg/dev_compiler/USAGE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ void main() {
3232
```
3333

3434
the Dart analyzer will not report a static error or warning even
35-
though the program will clearly fail (in checked mode). Running DDC:
35+
though the program will clearly fail (in checked mode). Running with --strong
36+
mode:
3637

37-
$ dartdevc main.dart
38+
$ dartanalyzer --strong main.dart
3839

3940
will display a severe error. Modifying `42` to `'42'` will
4041
correct the error.

0 commit comments

Comments
 (0)