From 4bb10b9ae416f8cc4c12d0841c7f4d615d62831b Mon Sep 17 00:00:00 2001 From: Jose Roberto Ayala Solares Date: Wed, 19 Oct 2016 14:50:39 +0100 Subject: [PATCH] Correction of a small typo (#476) --- vectors.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectors.Rmd b/vectors.Rmd index cd57e12..ddc5087 100644 --- a/vectors.Rmd +++ b/vectors.Rmd @@ -567,7 +567,7 @@ The call to "UseMethod" means that this is a generic function, and it will call methods("as.Date") ``` -For example, if `x` is a character vector, `as.Date()` will call `as.Date.charcter()`; if it's a factor, it'll call `as.Date.factor()`. +For example, if `x` is a character vector, `as.Date()` will call `as.Date.character()`; if it's a factor, it'll call `as.Date.factor()`. You can see the specific implementation of a method with `getS3method()`: