From 99e81ee21cbade6bc74d177ab35e66518e422c25 Mon Sep 17 00:00:00 2001
From: Aretha Foo <pfoo@ed.ac.uk>
Date: Fri, 21 Mar 2025 15:18:48 +0000
Subject: [PATCH] Editted one sentence about exercise on sapply()

---
 RBeginnersExercise2.Rmd     | 2 +-
 RBeginnersExercise2_Sol.Rmd | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/RBeginnersExercise2.Rmd b/RBeginnersExercise2.Rmd
index 7fe0976..9f4e61a 100644
--- a/RBeginnersExercise2.Rmd
+++ b/RBeginnersExercise2.Rmd
@@ -122,7 +122,7 @@ The `unique()` function in R can be used to find all unique values in a specific
 
 ```
 
-By using the `sapply()` function, try to find the unique values in each column in the `menu` table. 
+By using the `sapply()` function, find the unique values in each column in the `menu` table. 
 
 ```{r}
 # Write your code below
diff --git a/RBeginnersExercise2_Sol.Rmd b/RBeginnersExercise2_Sol.Rmd
index 3b019f0..3c84d07 100644
--- a/RBeginnersExercise2_Sol.Rmd
+++ b/RBeginnersExercise2_Sol.Rmd
@@ -123,7 +123,7 @@ The `unique()` function in R can be used to find all unique values in a specific
 unique(menu$Price)
 ```
 
-By using the `sapply()` function, try to find the unique values in each column in the `menu` table. 
+By using the `sapply()` function, find the unique values in each column in the `menu` table. 
 
 ```{r}
 # Write your code below
-- 
GitLab