From eb6dc8f59b7ec386bd25bdc7dd01b2c88d8b74a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Honor=C3=A9?= Date: Mon, 11 Jul 2022 16:59:46 +0100 Subject: [PATCH] Correct small typo Correct "seem" into "see" in the sentence "(...) you will sometimes see these patterns in other libraries." --- src/pages/type-classes/anatomy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/type-classes/anatomy.md b/src/pages/type-classes/anatomy.md index f61cb34a..522625da 100644 --- a/src/pages/type-classes/anatomy.md +++ b/src/pages/type-classes/anatomy.md @@ -89,7 +89,7 @@ In Scala this means any method that accepts instances of the type class as implicit parameters. Cats provides utilities that make type classes easier to use, -and you will sometimes seem these patterns in other libraries. +and you will sometimes see these patterns in other libraries. There are two ways it does this: *Interface Objects* and *Interface Syntax*. **Interface Objects**