Skip to content

Commit 1e29e6b

Browse files
committed
Use plural for contextual abstractions
1 parent 33540f3 commit 1e29e6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_overviews/scala3-book/taste-contextual-abstractions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ addresses.sortBy(address => (address.city, address.street))(using Ordering.Tuple
4545
In this case, the `Ordering.Tuple2(Ordering.String, Ordering.String)` instance is exactly the one that is otherwise inferred by the compiler.
4646
In other words both examples produce the same program.
4747

48-
_Contextual Abstractions_ is used to avoid repetition of code.
49-
It helps developers write pieces of code that are extensible and concise at the same time.
48+
_Contextual Abstractions_ are used to avoid repetition of code.
49+
They help developers write pieces of code that are extensible and concise at the same time.
5050

5151
For more details, see the [Contextual Abstractions chapter][contextual] of this book, and also the [Reference documentation][reference].
5252

0 commit comments

Comments
 (0)