From ad238cd2374c1010285d7a000d0f29c73e096747 Mon Sep 17 00:00:00 2001 From: languagelawyer <38548419+languagelawyer@users.noreply.github.com> Date: Wed, 17 May 2023 09:23:15 +0500 Subject: [PATCH] Fix typo --- _overviews/scala3-book/ca-type-classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-book/ca-type-classes.md b/_overviews/scala3-book/ca-type-classes.md index 18f5ef3f72..d79680a8be 100644 --- a/_overviews/scala3-book/ca-type-classes.md +++ b/_overviews/scala3-book/ca-type-classes.md @@ -120,7 +120,7 @@ val person = Person("John", "Doe") println(showablePerson.show(person)) ``` -Not that in practice, type classes are typically used with values whose type is unknown, unlike the type `Person`, as shown in the next section. +Note that in practice, type classes are typically used with values whose type is unknown, unlike the type `Person`, as shown in the next section. {% endtab %} {% tab 'Scala 3' %} ```scala