Skip to content

Commit 8b00bca

Browse files
Adding the Indentation
1 parent 6850c0a commit 8b00bca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/Best Practices.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,17 @@ Finally, remember that **design patterns are guidelines, not strict rules**. Rea
7575
**Core idea:** Combine several design patterns to solve a complex problem in a structured way.
7676

7777
- [[Builder Pattern]] :
78-
**Trigger clue:** “Too many constructor parameters”
79-
**Core idea:** Build objects step by step and include only required fields.
78+
**Trigger clue:** “Too many constructor parameters”
79+
**Core idea:** Build objects step by step and include only required fields.
8080

8181
- [[Bridge Pattern]] :
82-
**Trigger clue:** “Separate abstraction from implementation”
83-
**Core idea:** Split abstraction and implementation so both can change independently.
82+
**Trigger clue:** “Separate abstraction from implementation”
83+
**Core idea:** Split abstraction and implementation so both can change independently.
8484

8585
- [[Chain of Responsibility Pattern]] :
8686
**Trigger clue:** “Pass request through multiple handlers”.
8787
**Core idea:** Send a request through a chain of handlers where each handler decides to process it or pass it to the next.
8888

8989
- [[Flyweight Pattern]] :
9090
**Trigger clue:** “Large number of similar objects”.
91-
**Core idea:** Share common data between multiple objects to reduce memory usage instead of storing duplicate data in each object.
91+
**Core idea:** Share common data between multiple objects to reduce memory usage instead of storing duplicate data in each object.

0 commit comments

Comments
 (0)