From e3cb55634424809d1d5a26c612fe13fbf9dd7d59 Mon Sep 17 00:00:00 2001 From: David Date: Tue, 28 Feb 2023 11:17:09 +0100 Subject: [PATCH] Fixing typo (#1313) * Fixing typo * Update logicals.qmd --------- Co-authored-by: Mine Cetinkaya-Rundel --- logicals.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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! ```