Skip to content

Commit b8cb620

Browse files
authored
fix wording at end of Semigroup doc
1 parent 3824280 commit b8cb620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/typeclasses/semigroup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def combineAll[A: Semigroup](as: List[A]): A =
169169
```
170170

171171
`Semigroup` isn't powerful enough for us to implement this function - namely, it doesn't give us an identity
172-
or fallback value if the list is empty. We need a power expressive abstraction, which we can find in the
172+
or fallback value if the list is empty. We need a more powerfully expressive abstraction, which we can find in the
173173
`Monoid` type class.
174174

175175
N.B.

0 commit comments

Comments
 (0)