From b1cef556a7a8336cc096ac2b55a88f65cfded2e3 Mon Sep 17 00:00:00 2001 From: rohantheman Date: Mon, 19 Aug 2024 23:31:20 -0400 Subject: [PATCH] Update domain-modeling-fp.md Corrected the word "receiver" which was misspelt as "reciever" --- _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 ce72aca42..bc08f034c 100644 --- a/_overviews/scala3-book/domain-modeling-fp.md +++ b/_overviews/scala3-book/domain-modeling-fp.md @@ -777,7 +777,7 @@ extension (p: Pizza) p.copy(crustType = ct) ``` In the above code, we define the different methods on pizzas as _extension methods_. -With `extension (p: Pizza)` we say that we want to make the methods available on instances of `Pizza`. The reciever +With `extension (p: Pizza)` we say that we want to make the methods available on instances of `Pizza`. The receiver in this case is `p`. {% endtab %}