Skip to content

Commit 5e4ad96

Browse files
ricmarinovicjosevalim
authored andcommitted
Fix small typo on CHANGELOG.md (#5484)
1 parent a41950e commit 5e4ad96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ When there is a need to traverse a collection of items concurrently, Elixir deve
4848
|> Enum.map(&Task.async(SomeMod, :function, [&1]))
4949
|> Enum.map(&Task.await/1)
5050

51-
While the snippet above works fine in my occasions, for large collections it may be problem as it will spawn as many tasks as there are items in the collection. In many situations, you may want to set a limit of how many tasks will be running concurrently.
51+
While the snippet above works fine in many occasions, for large collections it may be problem as it will spawn as many tasks as there are items in the collection. In many situations, you may want to set a limit of how many tasks will be running concurrently.
5252

5353
`Task.async_stream/3` and `Task.async_stream/5` allows developers to process collections concurrently while controlling the maximum amount of concurrent tasks:
5454

0 commit comments

Comments
 (0)