Skip to content

Commit e6678e9

Browse files
authored
Merge pull request #2119 from performantdata/patch-2
replace possessive with conjugation
2 parents 01c92bd + be5d49c commit e6678e9

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)