summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando Tapia Rico <fertapric@gmail.com>2019-09-27 12:11:47 +0200
committerGitHub <noreply@github.com>2019-09-27 12:11:47 +0200
commit4253fdaead5f586bc7a3b30478eecd3b7ed7f329 (patch)
treede7fd11bdaf934a4cafef812a488bf04023fa379
parentb9b60c2631cb00e9f5cb11d0260ba079eab64a0a (diff)
downloadelixir-4253fdaead5f586bc7a3b30478eecd3b7ed7f329.tar.gz
Fix typo in Stream documentation
[ci skip]
-rw-r--r--lib/elixir/lib/stream.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elixir/lib/stream.ex b/lib/elixir/lib/stream.ex
index a66f13dfb..52b6a315b 100644
--- a/lib/elixir/lib/stream.ex
+++ b/lib/elixir/lib/stream.ex
@@ -801,7 +801,7 @@ defmodule Stream do
accumulator to be used by the next element, if any, in both cases.
Note: this function is equivalent to `Enum.flat_map_reduce/3`, except this
- function does not return the accumulator once the stream is procecssed.
+ function does not return the accumulator once the stream is processed.
## Examples