From bee20e1a3e3f509ee09f13d373fb023d379d53d3 Mon Sep 17 00:00:00 2001 From: "Damith C. Rajapakse" Date: Tue, 27 Sep 2016 12:27:17 +0800 Subject: [PATCH] Fix typo conception -> concept --- doc/LearningOutcomes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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? ------------------------------------------------------------------------------------------------------