From e32418becd268a50c9a3f2f5681fa810660f0f48 Mon Sep 17 00:00:00 2001 From: Zhuoer Dong Date: Thu, 25 Oct 2018 01:24:23 +0800 Subject: [PATCH] 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. --- vectors.Rmd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vectors.Rmd b/vectors.Rmd index 1fe5b60..f7baedd 100644 --- a/vectors.Rmd +++ b/vectors.Rmd @@ -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