diff --git a/xml/chapter1/section1/subsection6.xml b/xml/chapter1/section1/subsection6.xml
index 25accfdf2..460b22dfd 100644
--- a/xml/chapter1/section1/subsection6.xml
+++ b/xml/chapter1/section1/subsection6.xml
@@ -231,7 +231,9 @@ abs(-5);
alternative-expression and returns its value as the value of the
conditional.conditional expressionnon-boolean value as predicate
- Conditionals in full JavaScript accept any value, not just a boolean, as the result of evaluating
+ Conditionals
+
+ in full JavaScript accept any value, not just a boolean, as the result of evaluating
the predicate expression (see footnote
in section for details). The programs in this book
use only boolean values as predicates of conditionals.
@@ -591,8 +593,10 @@ $\vdots$
evaluationof &&of ;1logical conjunction, meaning roughly
the same as the English word and.
- This syntactic form is syntactic sugar
- Syntactic forms that are simply convenient
+ We assumeThis assumption is justified by the restriction mentioned
+ in footnote. Full JavaScript
+ needs to consider the case where the result of evaluating expression$_1$ is neither true nor false. this syntactic form to be syntactic
+ sugarSyntactic forms that are simply convenient
alternative surface structures for things that can be written in more
uniform ways are sometimes called syntactic sugar, to use a
phrase coined by
@@ -617,7 +621,7 @@ $\vdots$
evaluationof {\tt "|"|}of ;2logical disjunction, meaning roughly
the same as the English word or.
- This syntactic form is syntactic sugar for
+ We assume this syntactic form to be syntactic sugar for
expression$_1$?true:
expression$_2$.