From e9f1b2cf6767bd5c183497e5ed0597c5dba7a627 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mine=20=C3=87etinkaya-Rundel?= Date: Thu, 9 Nov 2023 10:15:29 -0500 Subject: [PATCH] Fix typo, closes #1545 --- regexps.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regexps.qmd b/regexps.qmd index f4656ec..c34dc7c 100644 --- a/regexps.qmd +++ b/regexps.qmd @@ -804,7 +804,7 @@ But in general, whenever you create patterns from existing strings it's wise to 3. `colors()` contains a number of modifiers like "lightgray" and "darkblue". How could you automatically identify these modifiers? - (Think about how you might detect and then removed the colors that are modified). + (Think about how you might detect and then remove the colors that are modified). 4. Create a regular expression that finds any base R dataset. You can get a list of these datasets via a special use of the `data()` function: `data(package = "datasets")$results[, "Item"]`.