diff --git a/docs/introduction/di_in_python.rst b/docs/introduction/di_in_python.rst index 8e16a5f8..53fa3a2b 100644 --- a/docs/introduction/di_in_python.rst +++ b/docs/introduction/di_in_python.rst @@ -49,7 +49,7 @@ Coupling and cohesion are about how tough the components are tied. - **High cohesion**. High cohesion is like using the screws. Very easy to disassemble and assemble back or assemble a different way. It is an opposite to high coupling. -When the cohesion is high the coupling is low. +High cohesion often correlates with loose coupling, and vice versa. Low coupling brings a flexibility. Your code becomes easier to change and test.