From 7d750f5328443ca1c50f336317e87e59ccf88463 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Thu, 28 Apr 2022 07:40:12 -0500 Subject: [PATCH] Typo --- workflow-pipes.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-pipes.Rmd b/workflow-pipes.Rmd index c554383..3ee85c7 100644 --- a/workflow-pipes.Rmd +++ b/workflow-pipes.Rmd @@ -70,7 +70,7 @@ While both of these forms have their time and place, the pipe generally produces ## magrittr and the `%>%` pipe If you've been using the tidyverse for a while, you might be familiar with the `%>%` pipe provided by the **magrittr** package. -The magrittr package is included in the code the tidyverse, so you can use `%>%` whenever you load the tidyverse: +The magrittr package is included in the core tidyverse, so you can use `%>%` whenever you load the tidyverse: ```{r, message = FALSE} library(tidyverse)