diff options
-rw-r--r-- | lib/elixir/lib/io.ex | 4 |
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]]] |