From 25c7adb821b6647bc8ec4ae5fe46206afa6cf0e4 Mon Sep 17 00:00:00 2001 From: Naupaka Zimmerman Date: Mon, 9 Dec 2024 15:10:54 -0800 Subject: [PATCH] Fix grammar --- episodes/01-r-basics.Rmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/episodes/01-r-basics.Rmd b/episodes/01-r-basics.Rmd index c232df7f..3e4660a5 100644 --- a/episodes/01-r-basics.Rmd +++ b/episodes/01-r-basics.Rmd @@ -149,11 +149,12 @@ created in R. ## Tip: Use of white space for readability The white spaces surrounding the assignment operator `<-` in the example -above (`first_value <- 1`) is unnecessary. However, it does make your code +above (`first_value <- 1`) are unnecessary. However, including them does make your code easier to read. There are several style guides you can follow, and choosing one is up to you, but consistency is key! A style guide we recommend is the Tidyverse [style guide](https://style.tidyverse.org/). + As they say: "Good coding style is like correct punctuation: you can manage without it, butitsuremakesthingseasiertoread."