From 2ac46664e1eb1e660b856f76176ecb907075f59a Mon Sep 17 00:00:00 2001 From: Yves Molina <75243207+YvesMolina@users.noreply.github.com> Date: Wed, 4 Jan 2023 15:10:31 +0100 Subject: [PATCH] Fix typo in observer pattern (#3223) --- .../content/101-rxjs-basics/100-observable-pattern.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md b/content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md index ae5d5f440..65deeb659 100644 --- a/content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md +++ b/content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md @@ -1,8 +1,8 @@ -# Observable Pattern +# Observer Pattern The observer pattern is a software design pattern in which an object, named the subject, maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods. Angular uses the Observer pattern which simply means — Observable objects are registered, and other objects observe (in Angular using the subscribe method) them and take action when the observable object is acted on in some way. Free Content -Angular and Observable \ No newline at end of file +Angular and Observable