From d8f1ca2c570ddd3bbf8b28c722419c5360322099 Mon Sep 17 00:00:00 2001 From: Yael Bakker Date: Fri, 16 Dec 2022 14:09:43 +0100 Subject: [PATCH] fix a typo --- _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 f141548bb0..6942cd124c 100644 --- a/_overviews/scala3-book/domain-modeling-fp.md +++ b/_overviews/scala3-book/domain-modeling-fp.md @@ -748,7 +748,7 @@ implicit class PizzaOps(p: Pizza) { ``` In the above code, we define the different methods on pizzas as methods in an _implicit class_. With `implicit class PizzaOps(p: Pizza)` then wherever `PizzaOps` is imported its methods will be available on -instances of `Pizza`. The reciever in this case is `p`. +instances of `Pizza`. The receiver in this case is `p`. {% endtab %} {% tab 'Scala 3' for=module_7 %}