| commit | da2aedeb83eb059594732146da8294f822791cb7 | [log] [tgz] |
|---|---|---|
| author | Kevin Moore <kevmoo@users.noreply.github.com> | Tue Aug 15 09:33:44 2017 -0700 |
| committer | Matan Lurey <matanlurey@users.noreply.github.com> | Tue Aug 15 09:33:44 2017 -0700 |
| tree | 3e7da7b28d73cf0ac8aca082b8e45dadb52ddf0a | |
| parent | aab98fc2f17507a0e8679923e34dd79b3bed6e90 [diff] |
Fix ansi_code_example (dart-lang/io#14)
diff --git a/pkgs/io/example/ansi_code_example.dart b/pkgs/io/example/ansi_code_example.dart index 9673b71..255bd72 100644 --- a/pkgs/io/example/ansi_code_example.dart +++ b/pkgs/io/example/ansi_code_example.dart
@@ -8,7 +8,7 @@ /// Prints a sample of all of the `AnsiCode` values. void main() { - if (ansiOutputEnabled) { + if (!ansiOutputEnabled) { print('`ansiOutputEnabled` is `false`.'); print("Don't expect pretty output."); }