From 0eb06e7b7475708977780c02f6f094fcf381bc2d Mon Sep 17 00:00:00 2001 From: jjchern Date: Mon, 23 May 2016 18:35:41 -0500 Subject: [PATCH] "vs" should be "vs." --- iteration.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iteration.Rmd b/iteration.Rmd index 92609a2..a9eb8c1 100644 --- a/iteration.Rmd +++ b/iteration.Rmd @@ -375,7 +375,7 @@ I mention while loops briefly, because I hardly ever use them. They're most ofte } ``` -## For loops vs functionals +## For loops vs. functionals For loops are not as important in R as they are in other languages because R is a functional programming language. This means that it's possible to wrap up for loops in a function, and call that function instead of using the for loop directly.