From 3e391d4b291142888d5eb8d69ffe518c1053a303 Mon Sep 17 00:00:00 2001 From: bartecheck Date: Sun, 13 May 2018 07:43:37 +0200 Subject: [PATCH] Update futures.md erroneous 'method' --- _overviews/core/futures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/core/futures.md b/_overviews/core/futures.md index b8ac14a754..68d4d50269 100644 --- a/_overviews/core/futures.md +++ b/_overviews/core/futures.md @@ -834,7 +834,7 @@ completed, but does not retrieve its result. In the same way, calling that method will not throw an exception if the future is failed. The `Future` trait implements the `Awaitable` trait with methods -method `ready()` and `result()`. These methods cannot be called directly +`ready()` and `result()`. These methods cannot be called directly by the clients-- they can only be called by the execution context.