From 87f480713d5d70bf7cc97a61f434ca0fb3ffb117 Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 11 Oct 2016 23:18:26 -0500 Subject: [PATCH] Fix a typo (#464) --- vectors.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectors.Rmd b/vectors.Rmd index ec98c96..4a02dc9 100644 --- a/vectors.Rmd +++ b/vectors.Rmd @@ -72,7 +72,7 @@ c(TRUE, TRUE, FALSE, NA) ### Numeric -Integer and double vectors are known collectively as numeric vectors. In R, numbers are doubles by default. To make an integer, place a `L` after the number: +Integer and double vectors are known collectively as numeric vectors. In R, numbers are doubles by default. To make an integer, place an `L` after the number: ```{r} typeof(1)