From 8b5ddf5dfdb1292a46ea403f67cc7ab634278174 Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Tue, 25 Feb 2020 15:06:11 +0100 Subject: [PATCH] doc(context-functions): typo `are` instead of `is` --- docs/docs/reference/contextual/context-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference/contextual/context-functions.md b/docs/docs/reference/contextual/context-functions.md index e8e7034da15b..bd20a6de022a 100644 --- a/docs/docs/reference/contextual/context-functions.md +++ b/docs/docs/reference/contextual/context-functions.md @@ -11,7 +11,7 @@ type Executable[T] = ExecutionContext ?=> T ``` Context function are written using `?=>` as the "arrow" sign. They are applied to synthesized arguments, in -the same way methods with context parameters is applied. For instance: +the same way methods with context parameters are applied. For instance: ```scala given ec as ExecutionContext = ...