diff --git a/RBeginnersExercise2.Rmd b/RBeginnersExercise2.Rmd
index d39f9b7f2eef5131f015676f7b61d8fdff5d3b44..d426d64b1b2f0cd8ae1096a9d488d7d523bec5d4 100644
--- a/RBeginnersExercise2.Rmd
+++ b/RBeginnersExercise2.Rmd
@@ -24,11 +24,7 @@ R supports importing datasets from a range of file types. Some common file types
 
 -   Through command *(more information regarding this method can be found in the [R documentation](https://cran.r-project.org/doc/manuals/R-data.html#XML))*
 
-To import data through command, first set working directory to the folder where your data files are stored.
-
-```{r}
-setwd("~/IntroductionToR_P2_ExerciseNotebook")
-```
+*\* To import data through command, you will have to first set working directory to the folder where your data files are stored. However, since this notebook is cloned from GitLab and is opened in a project space, you can skip this step.*
 
 ## 2.1.1 Import from CSV file
 
diff --git a/RBeginnersExercise2_Sol.Rmd b/RBeginnersExercise2_Sol.Rmd
index 6014aa84b2c7c694a387544a3d3fb972516466eb..132e14b88946beeb2124e290d0b7bc354bc206a5 100644
--- a/RBeginnersExercise2_Sol.Rmd
+++ b/RBeginnersExercise2_Sol.Rmd
@@ -24,11 +24,7 @@ R supports importing datasets from a range of file types. Some common file types
 
 -   Through command *(more information regarding this method can be found in the [R documentation](https://cran.r-project.org/doc/manuals/R-data.html#XML))*
 
-To import data through command, first set working directory to the folder where your data files are stored.
-
-```{r eval = FALSE}
-setwd("~/IntroductionToR_P2_ExerciseNotebook_Sol")
-```
+*\* To import data through command, you will have to first set working directory to the folder where your data files are stored. However, since this notebook is cloned from GitLab and is opened in a project space, you can skip this step.*
 
 ## 2.1.1 Import from CSV file