From cece9860027bdaa6021ee6fd0739f2398628ce54 Mon Sep 17 00:00:00 2001
From: "Peter J. Keleher" <keleher@cs.umd.edu>
Date: Mon, 11 Oct 2021 22:55:44 -0400
Subject: [PATCH] auto

---
 assign3/README.md | 22 ++++------------------
 1 file changed, 4 insertions(+), 18 deletions(-)

diff --git a/assign3/README.md b/assign3/README.md
index 4696ebc..a237e57 100644
--- a/assign3/README.md
+++ b/assign3/README.md
@@ -6,7 +6,7 @@ Learn to use:
  * custom views
  * drawing
  * gestures
- * tab bar view controllers
+ * tab bars
  * user defaults
  * dynamic animations
 
@@ -152,21 +152,7 @@ adding `.gesture(DragGesture ...)` at the end of your board view.
 ## Task 6: TabView
 You should create a `TabView` in your ContentView.swift, and include
 three views inside the TabView. The first one should be your board
-view, and we will work on the second and third views later on. Your
-`TabView` should be implemented like this:  
-```
-TabView {
-    Board().tabItem {
-        Label("Board", systemImage: "gamecontroller")
-    }
-    Scores().tabItem {
-        Label("Scores", systemImage: "list.dash")
-    }
-    About().tabItem {
-        Label("About", systemImage: "info.circle")
-    }
-}
-``` 
+view, and we will work on the second and third views later on. 
 
 ## Task 7: Implement the *HighScores* Page
 ### For Model:
@@ -197,8 +183,8 @@ struct Score: Hashable {
 
 ### For View:
 You should:
-- Create a new file called "Scores.swift", and create a view controller called `Scores`
-- Include a `List View` in this view controller, you should use `ForEach` to traversal through the Score list we just created in the model to show the data of each game. You should include the rank, the score, and the date time of each data point. 
+- Create a new file called "Scores.swift", and create a view called `Scores`.
+- Include a `List View` in this view, and use `ForEach` to traversal through the Score list we just created in the model to show the data of each game. You should include the rank, the score, and the date time of each data point. 
 
 **Important** The score should be sorted from high to low on the list. The data time can be any format, but should include all the information of "hour, minute, second, date and year'.
 
-- 
GitLab