Change Platform.isiOS to isIOS.

R=rnystrom@google.com

Review URL: https://codereview.chromium.org/1583763002 .
This commit is contained in:
Lasse R.H. Nielsen 2016-01-14 11:14:59 +01:00
parent a72ddf3a9d
commit 0083cf8439
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@
embedder for every generated random value.
* `dart:io`
* `Platform` added an `isiOS` getter and `Platform.operatingSystem` may now
* `Platform` added an `isIOS` getter and `Platform.operatingSystem` may now
return `ios`.
### Tool changes

View file

@ -117,7 +117,7 @@ class Platform {
/**
* Returns true if the operating system is iOS.
*/
static final bool isiOS = (_operatingSystem == "ios");
static final bool isIOS = (_operatingSystem == "ios");
/**
* Get the environment for this process.