From 190b9134f8b0070721648942d321b01445dff5b3 Mon Sep 17 00:00:00 2001 From: Saghir Date: Wed, 3 May 2017 13:45:46 +0100 Subject: [PATCH] Vector.Rmd: Typo Corrected "Augmented Vectors" (#563) There is a difference in four augmented types between Section "Augmented Vectors" and Section "Basic Vectors". Please double check. --- vectors.Rmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vectors.Rmd b/vectors.Rmd index a4323a0..022a6a0 100644 --- a/vectors.Rmd +++ b/vectors.Rmd @@ -581,10 +581,10 @@ The most important S3 generic is `print()`: it controls how the object is printe Atomic vectors and lists are the building blocks for other important vector types like factors and dates. I call these __augmented vectors__, because they are vectors with additional __attributes__, including class. Because augmented vectors have a class, they behave differently to the atomic vector on which they are built. In this book, we make use of four important augmented vectors: -* Factors. +* Factors +* Dates * Date-times -* Times. -* Tibbles. +* Tibbles These are described below.