From c032bff52322375fcf68be6cd7b9e44892a00d84 Mon Sep 17 00:00:00 2001 From: Matthew Hagemann Date: Sun, 16 Apr 2023 21:16:42 +0200 Subject: [PATCH 1/2] Fix wording error --- _overviews/scala3-book/domain-modeling-fp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-book/domain-modeling-fp.md b/_overviews/scala3-book/domain-modeling-fp.md index 6942cd124c..1fb00d944b 100644 --- a/_overviews/scala3-book/domain-modeling-fp.md +++ b/_overviews/scala3-book/domain-modeling-fp.md @@ -35,7 +35,7 @@ Ignoring the division of whole numbers, the possible *operations* on those value +, -, * ```` -An FP design is implemented in a similar way: +In FP, design is implemented in a similar way: - You describe your set of values (your data) - You describe operations that work on those values (your functions) From b0216087572ee6deb9eb6d38d426e6a9025d15e3 Mon Sep 17 00:00:00 2001 From: Matthew Hagemann <93575731+matthew-hagemann@users.noreply.github.com> Date: Wed, 19 Apr 2023 12:26:41 +0200 Subject: [PATCH 2/2] Update _overviews/scala3-book/domain-modeling-fp.md Improve sentence clarity Co-authored-by: Julien Richard-Foy --- _overviews/scala3-book/domain-modeling-fp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-book/domain-modeling-fp.md b/_overviews/scala3-book/domain-modeling-fp.md index 1fb00d944b..f8ab2fb571 100644 --- a/_overviews/scala3-book/domain-modeling-fp.md +++ b/_overviews/scala3-book/domain-modeling-fp.md @@ -35,7 +35,7 @@ Ignoring the division of whole numbers, the possible *operations* on those value +, -, * ```` -In FP, design is implemented in a similar way: +In FP, business domains are modeled in a similar way: - You describe your set of values (your data) - You describe operations that work on those values (your functions)