From 58795296af7a9cccf9be05805ab2ed59586877c8 Mon Sep 17 00:00:00 2001
From: Andrej Rasevic <andrej@rasevicengineering.com>
Date: Wed, 20 Jan 2021 21:33:29 -0500
Subject: [PATCH] description updates

---
 exercises/exercise5/Exercise5Description.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/exercises/exercise5/Exercise5Description.md b/exercises/exercise5/Exercise5Description.md
index 27b40ea..40e8d17 100644
--- a/exercises/exercise5/Exercise5Description.md
+++ b/exercises/exercise5/Exercise5Description.md
@@ -1,7 +1,7 @@
 # Exercise 3: Building our own Twitter API
 
 ## Due Date: Friday, January 22, 2021 11:59 PM
-## Objectives: To build a complete  API, including validations, schema, routing and controllers. Additionally learn about how to handle relational data in mongodb as well as user authentication.
+## Objectives: To build a complete  API, including validations, schema, routing and controllers. Additionally, learn about how to handle relational data in mongodb.
 
 ## Overview
 We will be building out a bare bones version of the twitter api. In this API you will be defining endpoints that allow you to create a user as well as create the tweets associated with that user. You will additionally be creating endpoints that will retrieve all the users stored in the database, all the tweets stored in the database and all the information for an individual user and their associated tweets.
@@ -9,7 +9,7 @@ We will be building out a bare bones version of the twitter api. In this API you
 ## Project Implementation/Specifications
 The files that comprise the API are `app.js`, the router files, the model schema and the controller files. The controller methods you will call in your router module have already been created for you. You will just need to invoke them along with the correct REST action at the specified endpoint. The files you will need to edit are the following:  
   1.  `App.js`  
-  At the bottom of `App.js` paste in the teaching staff login name and password as well as the mongodb connection string you created in `Exercise 2`. The section of the url string that you need to update has been referenced directly where it goes. 
+  At the bottom of `App.js` is the connection string to the database I use for class examples. You should replace this with the connection string to your own instance of a mongo database. However, if you are having issues with setting up your own database, feel free to use the one running for the class examples.   
   2.  `User Schema`  
   You need to define the User Schema inside of `models/User.js`. A User has the following 5 fields:  
     * name - it should be a String and a required field.  
-- 
GitLab