Adds the missing word "top" (#573)

The following sentence under the section Vector Basics is missing the word "top": "Dates and date-times are built on of numeric vectors." The sentence should read: "Dates and date-times are built on top of numeric vectors."
This commit is contained in:
Everett Robinson 2017-05-03 06:49:35 -06:00 committed by Hadley Wickham
parent f538fc7356
commit 7da10e182e
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ Every vector has two key properties:
Vectors can also contain arbitrary additional metadata in the form of attributes. These attributes are used to create __augmented vectors__ which build on additional behaviour. There are four important types of augmented vector:
* Factors are built on top of integer vectors.
* Dates and date-times are built on of numeric vectors.
* Dates and date-times are built on top of numeric vectors.
* Data frames and tibbles are built on top of lists.
This chapter will introduce you to these important vectors from simplest to most complicated. You'll start with atomic vectors, then build up to lists, and finish off with augmented vectors.