diff --git a/doc/manual/writing-nix-expressions.xml b/doc/manual/writing-nix-expressions.xml
index 76007fe28..e155d0e36 100644
--- a/doc/manual/writing-nix-expressions.xml
+++ b/doc/manual/writing-nix-expressions.xml
@@ -720,12 +720,12 @@ configureFlags = "
Since ${ and '' have
special meaning in indented strings, you need a way to quote them.
${ can be escaped by prefixing it with
- '', i.e., ''${.
- '' can be escaped by prefixing it with
- ', i.e., '''. Finally,
- linefeed, carriage-return and tab characters can be written as
- ''\n, ''\r,
- ''\t.
+ '' (that is, two single quotes), i.e.,
+ ''${. '' can be escaped by
+ prefixing it with ', i.e.,
+ '''. Finally, linefeed, carriage-return and
+ tab characters can be written as ''\n,
+ ''\r, ''\t.
Indented strings are primarily useful in that they allow
multi-line string literals to follow the indentation of the