Skip to content

Commit be5d49c

Browse files
replace possessive with plural
1 parent 24d4806 commit be5d49c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala3-book/types-dependent-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ trait DB {
2121
def get(k: Key): Option[k.Value] // a dependent method
2222
}
2323
```
24-
Given a key, the method `get` let's us access the map and potentially returns the stored value of type `k.Value`.
24+
Given a key, the method `get` lets us access the map and potentially returns the stored value of type `k.Value`.
2525
We can read this _path-dependent type_ as: "depending on the concrete type of the argument `k`, we return a matching value".
2626

2727
For example, we could have the following keys:

0 commit comments

Comments
 (0)