commit | 95a4eeafe48b4397f34e47a6262f4f7bba097fa9 | [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 | 7ba3d50e7bae28671b510e46ed60f46f1c7ee70b | |
parent | c509269a4f611e384c9221a366d08b8561fbee54 [diff] |
Fix ansi_code_example (#14)
diff --git a/example/ansi_code_example.dart b/example/ansi_code_example.dart index 9673b71..255bd72 100644 --- a/example/ansi_code_example.dart +++ b/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."); }