correct indentation of list in vectors.Rmd (#697)

The beginning "Double" is five space away from the left margin, while the R code chunk is only four thus not recognized as block element by Pandoc.
This commit is contained in:
Zhuoer Dong 2018-10-25 01:24:23 +08:00 committed by Hadley Wickham
parent b38b0ce4cb
commit e32418becd
1 changed files with 4 additions and 4 deletions

View File

@ -82,10 +82,10 @@ typeof(1L)
The distinction between integers and doubles is not usually important, but there are two important differences that you should be aware of:
1. Doubles are approximations. Doubles represent floating point numbers that
can not always be precisely represented with a fixed amount of memory.
This means that you should consider all doubles to be approximations.
For example, what is square of the square root of two?
1. Doubles are approximations. Doubles represent floating point numbers that
can not always be precisely represented with a fixed amount of memory.
This means that you should consider all doubles to be approximations.
For example, what is square of the square root of two?
```{r}
x <- sqrt(2) ^ 2