summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShia <rise.shia@gmail.com>2017-05-25 19:02:07 +0900
committerAndrea Leopardi <an.leopardi@gmail.com>2017-05-25 12:02:07 +0200
commitefe9451b4f4e17aac944434a8c7809e9abe92c3a (patch)
tree2b9f8e3c7450c64a1b6f0a90bd2e4ce37f95cd5b
parent1281f437245fe0e5623e71639be51c215ca06d6a (diff)
downloadelixir-efe9451b4f4e17aac944434a8c7809e9abe92c3a.tar.gz
Fix typo in the docs for Enum.map_every/3 (#6151)
-rw-r--r--lib/elixir/lib/enum.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/elixir/lib/enum.ex b/lib/elixir/lib/enum.ex
index 67ad76027..e0d8c6a3c 100644
--- a/lib/elixir/lib/enum.ex
+++ b/lib/elixir/lib/enum.ex
@@ -1239,8 +1239,8 @@ defmodule Enum do
The second argument specifying every `nth` item must be a non-negative
integer.
- If `nth` is `0`, then `enumerable` is diretcly converted to a list,
- witouth `fun` being ever applied.
+ If `nth` is `0`, then `enumerable` is directly converted to a list,
+ without `fun` being ever applied.
## Examples