From b5847edece794fea68f1bac7a1ef569153fd907c Mon Sep 17 00:00:00 2001 From: Aleksandra Nenadic Date: Mon, 20 Nov 2023 13:44:13 +0000 Subject: [PATCH] Explained which std we mean --- _episodes/32-software-design.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_episodes/32-software-design.md b/_episodes/32-software-design.md index 18dbe2ae7..ab4825cd1 100644 --- a/_episodes/32-software-design.md +++ b/_episodes/32-software-design.md @@ -129,7 +129,7 @@ Let's recall the solution requirements we discussed in the previous episode: - *Functional Requirements*: - SR1.1.1 (from UR1.1): - add standard deviation to data model and include in graph visualisation view + add daily standard deviation to the data model and include in graph visualisation view - SR1.2.1 (from UR1.2): add a new view to generate a textual representation of statistics, which is invoked by an optional command line argument @@ -202,7 +202,7 @@ but also what you can do to make that code amenable to that type of testing. > **Note 2: we have intentionally left this exercise without a solution > to give you more freedom in implementing it how you see fit. > If you are struggling with adding a new view and command line parameter, -> you may find the standard deviation requirement easier. +> you may find adding the daily standard deviation requirement easier. > A later episode in this section will look at > how to handle command line parameters in a scalable way.** {: .challenge}