diff --git a/logicals.qmd b/logicals.qmd index b63ef97..1752851 100644 --- a/logicals.qmd +++ b/logicals.qmd @@ -143,8 +143,8 @@ age_mary <- NA # We don't know how old John is age_john <- NA -# Are John and Mary the same age? -age_john == age_john +# Are Mary and John the same age? +age_mary == age_john # We don't know! ```