From b8cb620a79ae2f4f54fbed6dde20ed4950b0f792 Mon Sep 17 00:00:00 2001 From: Vince Date: Sat, 20 Jan 2024 12:39:05 +0100 Subject: [PATCH] fix wording at end of Semigroup doc --- docs/typeclasses/semigroup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/typeclasses/semigroup.md b/docs/typeclasses/semigroup.md index 0da4361b16..e0e90a1c7e 100644 --- a/docs/typeclasses/semigroup.md +++ b/docs/typeclasses/semigroup.md @@ -169,7 +169,7 @@ def combineAll[A: Semigroup](as: List[A]): A = ``` `Semigroup` isn't powerful enough for us to implement this function - namely, it doesn't give us an identity -or fallback value if the list is empty. We need a power expressive abstraction, which we can find in the +or fallback value if the list is empty. We need a more powerfully expressive abstraction, which we can find in the `Monoid` type class. N.B.