From 73896f5aacaa3dbe882105336768cd88cedb18e2 Mon Sep 17 00:00:00 2001 From: Octavio Carpes Date: Sat, 19 May 2018 14:12:46 -0300 Subject: [PATCH] Uptade README.md Added a coma to this line: "Every piece of logic, which doesn't belong to the components described above, should be placed inside a service." --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 655e40b..70b8952 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ function MyCtrl(uppercaseFilter) { ### Services -Every piece of logic, which doesn't belong to the components described above should be placed inside a service. Usually services encapsulate the domain specific logic, persistence logic, XHR, WebSockets, etc. When the controllers in the application became too "fat" the repetitive code should be placed inside a service. +Every piece of logic, which doesn't belong to the components described above, should be placed inside a service. Usually services encapsulate the domain specific logic, persistence logic, XHR, WebSockets, etc. When the controllers in the application became too "fat" the repetitive code should be placed inside a service. ```JavaScript myModule.service('Developer', function () {