From 7efed37e998b544df8f2b00a8f767421a5d8cb6b Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 1 Sep 2020 06:11:09 +1000 Subject: [PATCH] docs: Fix simple typo, simultanously -> simultaneously There is a small typo in docs/api.md. Should read `simultaneously` rather than `simultanously`. --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index bc48355b..6562ecd5 100644 --- a/docs/api.md +++ b/docs/api.md @@ -1960,7 +1960,7 @@ Where: * `condition` is a concurrency limiting condition, such as [guard.n](#guardn) -Limit the concurrency of a function. Creates a new function whose concurrency is limited by `condition`. This can be useful with operations such as [when.map](#whenmap), [when/parallel](#whenparallel), etc. that allow tasks to execute in "parallel", to limit the number which can be inflight simultanously. +Limit the concurrency of a function. Creates a new function whose concurrency is limited by `condition`. This can be useful with operations such as [when.map](#whenmap), [when/parallel](#whenparallel), etc. that allow tasks to execute in "parallel", to limit the number which can be inflight simultaneously. ```js // Using when/guard with when.map to limit concurrency