From 86d29da442aca3c992b9417e71d267f4d2cb57ee Mon Sep 17 00:00:00 2001 From: Daniel Barclay Date: Mon, 3 Feb 2025 15:53:47 -0500 Subject: [PATCH] Fixed missing comma (closing an appositice) in types-dependent-function.md --- _overviews/scala3-book/types-dependent-function.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-book/types-dependent-function.md b/_overviews/scala3-book/types-dependent-function.md index 96f6d36210..cf86880fa6 100644 --- a/_overviews/scala3-book/types-dependent-function.md +++ b/_overviews/scala3-book/types-dependent-function.md @@ -11,7 +11,7 @@ versionSpecific: true --- A *dependent function type* describes function types, where the result type may depend on the function’s parameter values. -The concept of dependent types, and of dependent function types is more advanced and you would typically only come across it when designing your own libraries or using advanced libraries. +The concept of dependent types, and of dependent function types, is more advanced and you would typically only come across it when designing your own libraries or using advanced libraries. ## Dependent Method Types Let's consider the following example of a heterogenous database that can store values of different types.