diff options
-rw-r--r-- | Doc/lib/libdoctest.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libdoctest.tex b/Doc/lib/libdoctest.tex index fc95a31..d17b6eb 100644 --- a/Doc/lib/libdoctest.tex +++ b/Doc/lib/libdoctest.tex @@ -304,10 +304,10 @@ yes The starting column doesn't matter: \begin{verbatim} ->>> assert "Easy!" ->>> import math ->>> math.floor(1.9) -1.0 + >>> assert "Easy!" + >>> import math + >>> math.floor(1.9) + 1.0 \end{verbatim} and as many leading whitespace characters are stripped from the expected |