Skip to content

Commit 999b8bf

Browse files
committed
punctuation fix
1 parent ff6c712 commit 999b8bf

File tree

1 file changed

+1
-1
lines changed
  • module3-crud-and-data-models/r3-model-view-controller

1 file changed

+1
-1
lines changed

module3-crud-and-data-models/r3-model-view-controller/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction to MVC projects
44

5-
When beginning a new project (especially, when using express), there are several different methods that can be used to set up the overall file structure and flow. One of the most commonly used architectural patterns is called MVC. this acronym stands for "Model, View, Controller".
5+
When beginning a new project (especially, when using express), there are several different methods that can be used to set up the overall file structure and flow. One of the most commonly used architectural patterns is called MVC. This acronym stands for "Model, View, Controller".
66
This pattern is favored because of its alignment with the computer science design principle, [**separation of concerns**](https://en.wikipedia.org/wiki/Separation_of_concerns). By dividing up responsibilities within our file structure, for example, we can have our db connection work in one file and api routes in another file, ...etc.
77

88
```

0 commit comments

Comments
 (0)