diff --git a/docs/advanced.md b/docs/advanced.md
index 78857722..91a4ec13 100644
--- a/docs/advanced.md
+++ b/docs/advanced.md
@@ -2224,38 +2224,25 @@ random seed and re-shuffle the tests in each iteration.
googletest can use colors in its terminal output to make it easier to spot the
important information:
-
-...
+
- [----------] 1 test from
- FooTest
- [ RUN ]
- FooTest.DoesAbc
- [ OK ]
- FooTest.DoesAbc
- [----------]
- 2 tests from BarTest
- [ RUN ]
- BarTest.HasXyzProperty
- [ OK ]
- BarTest.HasXyzProperty
- [ RUN ]
- BarTest.ReturnsTrueOnSuccess ... some error messages ...
- [ FAILED ]
- BarTest.ReturnsTrueOnSuccess ...
- [==========]
- 30 tests from 14 test suites ran.
- [ PASSED ]
- 28 tests.
- [ FAILED ]
- 2 tests, listed below:
- [ FAILED ]
- BarTest.ReturnsTrueOnSuccess
- [ FAILED ]
- AnotherTest.DoesXyz
-
- 2 FAILED TESTS
-
-
... +[----------] 1 test from FooTest +[ RUN ] FooTest.DoesAbc +[ OK ] FooTest.DoesAbc +[----------] 2 tests from BarTest +[ RUN ] BarTest.HasXyzProperty +[ OK ] BarTest.HasXyzProperty +[ RUN ] BarTest.ReturnsTrueOnSuccess +... some error messages ... +[ FAILED ] BarTest.ReturnsTrueOnSuccess +... +[==========] 30 tests from 14 test suites ran. +[ PASSED ] 28 tests. +[ FAILED ] 2 tests, listed below: +[ FAILED ] BarTest.ReturnsTrueOnSuccess +[ FAILED ] AnotherTest.DoesXyz + + 2 FAILED TESTS +You can set the `GTEST_COLOR` environment variable or the `--gtest_color` command line flag to `yes`, `no`, or `auto` (the default) to enable colors,