summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Leopardi <an.leopardi@gmail.com>2019-04-07 23:54:51 +0200
committerAndrea Leopardi <an.leopardi@gmail.com>2019-04-07 23:54:51 +0200
commitfedf415bfda029b3fbefd0df8c92fe42652e8f5d (patch)
treef427beda2b8aa9c00d602419999cbbaf987b4bc1
parent2ec3afea9a5a6eaa6aff5a8b6eff04310a2f2f83 (diff)
downloadelixir-al/iodata-docs.tar.gz
-rw-r--r--lib/elixir/lib/io.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/elixir/lib/io.ex b/lib/elixir/lib/io.ex
index d99581ca9..c66d77307 100644
--- a/lib/elixir/lib/io.ex
+++ b/lib/elixir/lib/io.ex
@@ -34,8 +34,8 @@ defmodule IO do
IO data is a data type that can be used as a more efficient alternative to binaries
in certain situations.
- A term of type **IO data** is a binary or a list containing bytes (integers in `0..255`),
- binaries, or nested iolists. The type is recursive. Let's see an example of one of
+ A term of type **IO data** is a binary or a list containing bytes (integers in `0..255`)
+ or nested IO data. The type is recursive. Let's see an example of one of
the possible IO data representing the binary `"hello"`:
[?h, "el", ["l", [?o]]]