diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b64d2..0304bef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.2.1 + +### 1. Enhancements + + * [async with] Correct documentation regarding `@async_with_timeout` attribute + ## v0.2.0 ### 1. Enhancements diff --git a/lib/async_with.ex b/lib/async_with.ex index 7a064d5..6e7a88a 100644 --- a/lib/async_with.ex +++ b/lib/async_with.ex @@ -28,8 +28,9 @@ defmodule AsyncWith do ## Timeout attribute - The attribute `@async_with_timeout` can be used to configure the maximum time allowed per - clause. It expects a timeout in milliseconds, with the default value of `5000`. + The attribute `@async_with_timeout` can be used to configure the maximum time allowed to + execute all the clauses. It expects a timeout in milliseconds, with the default value of + `5000`. defmodule Acme do use AsyncWith