Correction of a small typo (#476)
This commit is contained in:
		
				
					committed by
					
						
						Hadley Wickham
					
				
			
			
				
	
			
			
			
						parent
						
							86a4d1df6f
						
					
				
				
					commit
					4bb10b9ae4
				
			@@ -567,7 +567,7 @@ The call to "UseMethod" means that this is a generic function, and it will call
 | 
				
			|||||||
methods("as.Date")
 | 
					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()`:
 | 
					You can see the specific implementation of a method with `getS3method()`:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user