From 4f1adf0e540208195e370b27e941c56f49371a56 Mon Sep 17 00:00:00 2001 From: costa100 Date: Mon, 23 Nov 2020 10:26:52 -0800 Subject: [PATCH] Update context-functions-spec.md I think the doc is missing the question mark in the the entry: T1, ..., TN => R at line 20. It should be T1, ..., TN ?=> R. --- docs/docs/reference/contextual/context-functions-spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference/contextual/context-functions-spec.md b/docs/docs/reference/contextual/context-functions-spec.md index 39006116907c..22517a75de3a 100644 --- a/docs/docs/reference/contextual/context-functions-spec.md +++ b/docs/docs/reference/contextual/context-functions-spec.md @@ -17,7 +17,7 @@ Context function types associate to the right, e.g. Context function types are shorthands for class types that define `apply` methods with context parameters. Specifically, the `N`-ary function type -`T1, ..., TN => R` is a shorthand for the class type +`T1, ..., TN ?=> R` is a shorthand for the class type `ContextFunctionN[T1 , ... , TN, R]`. Such class types are assumed to have the following definitions, for any value of `N >= 1`: ```scala package scala