diff --git a/src/sphinx/Detailed-Topics/Command-Line-Reference.rst b/src/sphinx/Detailed-Topics/Command-Line-Reference.rst
index be52e6326..c61f8217c 100644
--- a/src/sphinx/Detailed-Topics/Command-Line-Reference.rst
+++ b/src/sphinx/Detailed-Topics/Command-Line-Reference.rst
@@ -221,7 +221,7 @@ influence SBT execution. Also see :doc:`Launcher`.
|
-``sbt.log.noformat``
+``sbt.log.format``
.. raw:: html
@@ -235,15 +235,17 @@ Boolean
|
-false
+unset
.. raw:: html
|
-If true, disable ANSI color codes. Useful on build servers or terminals
+If true, enable ANSI escape codes such as colors.
+If false, disable them, which can be useful on build servers or terminals
that don't support color.
+If unset, whether to use escape codes is automatically detected.
.. raw:: html
diff --git a/src/sphinx/faq.rst b/src/sphinx/faq.rst
index 8c3489419..8faefa713 100644
--- a/src/sphinx/faq.rst
+++ b/src/sphinx/faq.rst
@@ -218,12 +218,12 @@ get output that looks like:
[0m[ [0minfo [0m] [0mSet current project to root
or ansi codes are supported but you want to disable colored output. To
-completely disable ansi codes, set the ``sbt.log.noformat`` system
-property to ``true``. For example,
+completely disable ansi codes, set the ``sbt.log.format`` system
+property to ``false``. For example,
.. code-block :: console
- $ sbt -Dsbt.log.noformat=true
+ $ sbt -Dsbt.log.format=false
How can I start a Scala interpreter (REPL) with sbt project configuration (dependencies, etc.)?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|