From 8ee35330f7039b513b0d36196d6d63aecb921ad1 Mon Sep 17 00:00:00 2001 From: Jose Roberto Ayala Solares Date: Sun, 16 Oct 2016 19:56:27 +0100 Subject: [PATCH] Typo correction (#473) Change "want" for "warning" in line 67. --- factors.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factors.Rmd b/factors.Rmd index 537f69d..ae2e8e1 100644 --- a/factors.Rmd +++ b/factors.Rmd @@ -64,7 +64,7 @@ y2 <- factor(x2, levels = month_levels) y2 ``` -If you want a want, you can use `readr::parse_factor()`: +If you want a warning, you can use `readr::parse_factor()`: ```{r} y2 <- parse_factor(x2, levels = month_levels)