Correction of a small typo (#476)

This commit is contained in:
Jose Roberto Ayala Solares 2016-10-19 14:50:39 +01:00 committed by Hadley Wickham
parent 86a4d1df6f
commit 4bb10b9ae4
1 changed files with 1 additions and 1 deletions

View File

@ -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()`: