From c32442a81b4a7339f470cd4b05a222259567118e Mon Sep 17 00:00:00 2001 From: Jorge Espinoza Date: Thu, 11 Mar 2021 00:28:14 -0300 Subject: [PATCH] Missing word The negative expression would be "keep going until that doesn't happen" if this refers to the while condition. --- book/book.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/book.tex b/book/book.tex index fe02ae4..1009a30 100644 --- a/book/book.tex +++ b/book/book.tex @@ -5621,7 +5621,7 @@ \section{{\tt break}} can check the condition anywhere in the loop (not just at the top) and you can express the stop condition affirmatively (``stop when this happens'') rather than negatively (``keep going -until that happens''). +until that doesn't happens''). \section{Square roots}