From 1818401f74eb8b7b7e5c9e955c0266977816fa21 Mon Sep 17 00:00:00 2001 From: Matthew Date: Thu, 7 Dec 2023 13:02:05 -0500 Subject: [PATCH] Update boolean-strategies.qmd A minor typo in the `na.last` example where it says `na.list` instead. --- boolean-strategies.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boolean-strategies.qmd b/boolean-strategies.qmd index c7b0b5a..4e61c0c 100644 --- a/boolean-strategies.qmd +++ b/boolean-strategies.qmd @@ -61,7 +61,7 @@ Currently: - `na.last = TRUE` means put `NA`s last. - `na.last = FALSE` means put `NA`s first. -- `na.list = NA` means to drop them. +- `na.last = NA` means to drop them. I think we could make this function more clear by changing the argument name to `na` and accepting one of three values: `last`, `first`, or `drop`.