From 73ae26f8481e677e0f71fd934411d83ed7970ce6 Mon Sep 17 00:00:00 2001
From: maneesha sane <829690+maneesha@users.noreply.github.com>
Date: Wed, 3 Jan 2024 11:59:03 -0500
Subject: [PATCH 1/2] consistent lowercase for filename
The second time the file `script.R` is referenced, it starts with a capital S. For consistency as file names are case sensitive, this PR changes it to lowercase.
---
episodes/01-starting-with-data.Rmd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/episodes/01-starting-with-data.Rmd b/episodes/01-starting-with-data.Rmd
index 0aacb2c4..13b7584a 100644
--- a/episodes/01-starting-with-data.Rmd
+++ b/episodes/01-starting-with-data.Rmd
@@ -180,7 +180,7 @@ Once a variable is created, we can use the variable name to refer to the value i
-To see the value of a variable, we can print it by typing the name of the variable and hitting CTRL + Return (or CTRL + Enter) while working in the Script.R file in the editor which is recommended. If we are working in the console directly, we need to hit Return (or Enter).
+To see the value of a variable, we can print it by typing the name of the variable and hitting CTRL + Return (or CTRL + Enter) while working in the `script.R` file in the editor which is recommended. If we are working in the console directly, we need to hit Return (or Enter).
In general, R will print to the console any object returned by a function or operation *unless* we assign it to a variable.
```{r}
From 90c526f81b1a147ed8299bd7ee2167be0742665d Mon Sep 17 00:00:00 2001
From: Erin Becker
Date: Fri, 8 Mar 2024 15:36:29 -0800
Subject: [PATCH 2/2] Update episodes/01-starting-with-data.Rmd
---
episodes/01-starting-with-data.Rmd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/episodes/01-starting-with-data.Rmd b/episodes/01-starting-with-data.Rmd
index 13b7584a..cb8cf0ed 100644
--- a/episodes/01-starting-with-data.Rmd
+++ b/episodes/01-starting-with-data.Rmd
@@ -180,7 +180,7 @@ Once a variable is created, we can use the variable name to refer to the value i
-To see the value of a variable, we can print it by typing the name of the variable and hitting CTRL + Return (or CTRL + Enter) while working in the `script.R` file in the editor which is recommended. If we are working in the console directly, we need to hit Return (or Enter).
+To see the value of a variable, we can print it by typing the name of the variable and hitting CTRL + Return (or CTRL + Enter) while working in the "`script.R`" file in the editor which is recommended. If we are working in the console directly, we need to hit Return (or Enter).
In general, R will print to the console any object returned by a function or operation *unless* we assign it to a variable.
```{r}