From 96597ccb304d02dd6d675d9bcd1878f5eec4636e Mon Sep 17 00:00:00 2001 From: "Damith C. Rajapakse" Date: Tue, 5 Sep 2017 10:56:52 +0800 Subject: [PATCH] LOs/LO-ImplementClasses: mention meaning of diamond symbol --- doc/LearningOutcomes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/LearningOutcomes.md b/doc/LearningOutcomes.md index b855254b9..0f648a76d 100644 --- a/doc/LearningOutcomes.md +++ b/doc/LearningOutcomes.md @@ -40,7 +40,7 @@ Side reading: [Code smell: Primitive Obsession](https://sourcemaking.com/refacto * Assume the address is entered in the following format `a/BLOCK, STREET, UNIT, POSTAL_CODE`
e.g. `a/123, Clementi Ave 3, #12-34, 231534` -* Split the `Address` class as follows.
+* Split the `Address` class as follows. Note: the filled diamond symbol ◆ means an `Address` _consists of_ `Block`, `Street`, etc.
* Update the user guide and tests to match.