From 77a5d4ecc4a4e854d0458a86ed9c98c80d5a55d7 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 25 Jun 2019 13:31:34 -0400 Subject: [PATCH] Clarifications --- docs/api/cyclone/concurrent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/cyclone/concurrent.md b/docs/api/cyclone/concurrent.md index 6e3b9fe5..f6273ca9 100644 --- a/docs/api/cyclone/concurrent.md +++ b/docs/api/cyclone/concurrent.md @@ -172,7 +172,7 @@ Type predicate, returns `#t` if `obj` is a future and `#f` otherwise. (future expr ...) -Executes the given statements on another thread and returns a future object that can be dereferenced later to retrieve the cached result. +Executes the given expressions on another thread and returns a future object that can be dereferenced later to retrieve the cached result. Note the result will be the value obtained from executing the last expression. ### future-call