From 478cadc22848585d4a9ba3dcd5c258eff63af1d8 Mon Sep 17 00:00:00 2001 From: Gage Guzman <54620463+Gkolman@users.noreply.github.com> Date: Fri, 20 Aug 2021 13:45:43 -0700 Subject: [PATCH] Update README.md Added a wiki link to MVC incase people have not heard of it before and want to read into it more --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f03e5e79618..8fc6cf952294 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ component in an interconnected way like a well-oiled machine. AngularJS is JavaS and done right. (Well it is not really MVC, read on, to understand what this means.) #### MVC, no, MV* done the right way! -MVC, short for Model-View-Controller, is a design pattern, i.e. how the code should be organized and +MVC, short for Model-View-Controller, is a design pattern, i.e. how the code should be organized and how the different parts of an application separated for proper readability and debugging. Model is the data and the database. View is the user interface and what the user sees. Controller is the main link between Model and View. These are the three pillars of major programming frameworks present on