Fix typos in doc-string.

R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//371523006 .
This commit is contained in:
Sigurd 2015-08-05 11:15:39 +02:00
parent 4ca87e6d88
commit 58c18aaa9b

View file

@ -53,9 +53,9 @@ part of dart.io;
* String os = Platform.operatingSystem;
* // Or, use a predicate getter.
* if (Platform.isMacOS) {
* Print('is a Mac');
* print('is a Mac');
* } else {
* print('is not a Mac');
* print('is not a Mac');
* }
* }
*