From 1ba484d7deede3c45c2b58ccd97046efcc19e14b Mon Sep 17 00:00:00 2001 From: Eric Watt Date: Thu, 18 Aug 2016 15:54:46 -0400 Subject: [PATCH] Fixed typo of function name supressMessages() (#285) Should be suppressMessages() --- pipes.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipes.Rmd b/pipes.Rmd index ab66be0..144a94f 100644 --- a/pipes.Rmd +++ b/pipes.Rmd @@ -185,7 +185,7 @@ This means that the pipe won't work for two classes of functions: ``` There are a relatively wide class of functions with this behaviour, - including `try()`, `supressMessages()`, and `suppressWarnings()` + including `try()`, `suppressMessages()`, and `suppressWarnings()` in base R. ## When not to use the pipe