From bcb29e7577627699527701dc801804003cb8968b Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 6 Mar 2023 17:51:49 -0600 Subject: [PATCH] FAQ: add another link to the context bounds answer --- _overviews/FAQ/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/FAQ/index.md b/_overviews/FAQ/index.md index 4c65c0b734..ca4538daae 100644 --- a/_overviews/FAQ/index.md +++ b/_overviews/FAQ/index.md @@ -153,7 +153,7 @@ See the [Scala 2.13 Collections Guide](https://docs.scala-lang.org/overviews/col It's syntactic sugar for a context parameter (an `implicit` parameter in Scala 2, or a `using` parameter in Scala 3). -More details in this [Stack Overflow answer](https://stackoverflow.com/a/4467012). +More details in this [section of the Scala 3 Book](https://docs.scala-lang.org/scala3/book/ca-context-bounds.html) and this [Stack Overflow answer](https://stackoverflow.com/a/4467012). ### How does `for / yield` work?