diff --git a/doc/LearningOutcomes.md b/doc/LearningOutcomes.md index fc15e8fc1..f3f8a27bb 100644 --- a/doc/LearningOutcomes.md +++ b/doc/LearningOutcomes.md @@ -99,8 +99,8 @@ Covered by `[LO-Polymorphism]` * Note how `Logic` class depends on the `StorageFile` class. This is a violation of DIP. * Modify the implementation as follows so that both `Logic` and `StorageFile` now depend on the abstraction - `Storage`. (Note: The term *abstraction* here is referring to the conception of abstracting, not to the fact that `Storage` class is `abastract`)
- + `Storage`. (Note: The term *abstraction* here is referring to the concept of abstracting, not to the fact + that `Storage` class is `abastract`)
* Where else in the code do you notice the application of DIP? ------------------------------------------------------------------------------------------------------