1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-19 23:53:24 +02:00

Fix typo in observer pattern (#3223)

This commit is contained in:
Yves Molina
2023-01-04 15:10:31 +01:00
committed by GitHub
parent f06a2ed6a5
commit 2ac46664e1

View File

@@ -1,4 +1,4 @@
# 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.