@@ -59,8 +59,8 @@ have any feedback or suggestions for improvement!
59
59
60
60
## KISS
61
61
62
- ** Keep It Simple, Stupid** : most systems work best if they are kept simple
63
- rather than made complex.
62
+ ** Keep It Simple, Stupid** : most systems work and are understood better if they
63
+ are kept simple rather than made complex.
64
64
65
65
Why
66
66
@@ -652,10 +652,10 @@ Resources
652
652
## Dependency Inversion Principle
653
653
654
654
Dependency Inversion is the strategy of depending upon interfaces or abstract
655
- functions and classes rather than upon concrete functions and classes.
656
- Simply put, when components of our system have dependencies, we don’t want to
657
- directly inject a component’s dependency into another. Instead, we should use a
658
- level of abstraction between them.
655
+ functions and classes rather than upon concrete functions and classes. Simply
656
+ put, when components of our system have dependencies, we don’t want to directly
657
+ inject a component’s dependency into another. Instead, we should use a level of
658
+ abstraction between them.
659
659
660
660
** DIP** is the D in [ SOLID] ( #solid ) .
661
661
@@ -693,7 +693,7 @@ A subset of programming principles:
693
693
- [ Open/Closed Principle] ( #openclosed-principle )
694
694
- [ Liskov Substitution Principle] ( #liskov-substitution-principle )
695
695
- [ Interface Segregation Principle] ( #interface-segregation-principle )
696
- - [ Dependency Inversion Principle] ( #Dependency-Inversion-Principle )
696
+ - [ Dependency Inversion Principle] ( #dependency-inversion-principle )
697
697
698
698
## FIRST principles of testing
699
699
0 commit comments