Fixing typo (#1313)

* Fixing typo

* Update logicals.qmd

---------

Co-authored-by: Mine Cetinkaya-Rundel <cetinkaya.mine@gmail.com>
This commit is contained in:
David 2023-02-28 11:17:09 +01:00 committed by GitHub
parent 9887705f43
commit e3cb556344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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!
```