From d800a19a8383e24de5f5a3e418755c96d1aedf15 Mon Sep 17 00:00:00 2001 From: Ajay Deonarine Date: Fri, 26 Aug 2016 11:33:27 -0400 Subject: [PATCH] Fixed Typo (#317) --- strings.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings.Rmd b/strings.Rmd index 0536553..5cbfe1c 100644 --- a/strings.Rmd +++ b/strings.Rmd @@ -483,7 +483,7 @@ It's natural to use `str_count()` with `mutate()`: df %>% mutate( vowels = str_count(word, "[aeiou]"), - consontants = str_count(word, "[^aeiou]") + consonants = str_count(word, "[^aeiou]") ) ```