From 4cdf31d9dc92d406dcf501d7cd88f2cb64f93c4f Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Thu, 4 Aug 2022 02:26:41 -0700 Subject: [PATCH] chore: remove mongo reference (#47133) * chore: remove mongo reference * chore: apply review suggestions Co-authored-by: Kristofer Koishigawa Co-authored-by: Kristofer Koishigawa --- client/i18n/locales/english/intro.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/i18n/locales/english/intro.json b/client/i18n/locales/english/intro.json index 9825eeb1efc..326743143a9 100644 --- a/client/i18n/locales/english/intro.json +++ b/client/i18n/locales/english/intro.json @@ -591,8 +591,8 @@ "mongodb-and-mongoose": { "title": "MongoDB and Mongoose", "intro": [ - "MongoDB is a database application that stores JSON documents (or records) that you can use in your application. Unlike SQL, another type of database, Mongo is a non-relational or \"NoSQL\" database. This means Mongo stores all associated data within one record, instead of storing it across many preset tables as in a SQL database.", - "Mongoose is a popular npm package that is often installed alongside Mongo. With Mongoose, you can use plain JavaScript objects instead of JSON, which makes it easier to work with Mongo. Also, it allows you to create blueprints for your documents called schemas, so you don't accidentally save the wrong type of data and cause bugs later.", + "MongoDB is a database application that stores JSON documents (or records) that you can use in your application. Unlike SQL, another type of database, MongoDB is a non-relational or \"NoSQL\" database. This means MongoDB stores all associated data within one record, instead of storing it across many preset tables as in a SQL database.", + "Mongoose is a popular npm package for interacting with MongoDB. With Mongoose, you can use plain JavaScript objects instead of JSON, which makes it easier to work with MongoDB. Also, it allows you to create blueprints for your documents called schemas, so you don't accidentally save the wrong type of data and cause bugs later.", "In the MongoDB and Mongoose courses, you'll learn the fundamentals of working with persistent data including how to set up a model, and save, delete, and find documents in the database." ] },