summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEksperimental <eksperimental@autistici.org>2021-12-22 22:30:29 +0000
committerGitHub <noreply@github.com>2021-12-22 23:30:29 +0100
commit73d3f7dcb7c0e71f98dfd2a5c6e5cfb120b5c714 (patch)
treeafee9465df912d3ddf47ad57fd0bd6c43762380d
parentaad9d6c0691e67db1ffbd00757bc65d6c0119fb6 (diff)
downloadelixir-73d3f7dcb7c0e71f98dfd2a5c6e5cfb120b5c714.tar.gz
Remove reference to t:Enum.t/0 in Typespecs page (#11521)
See discussion: https://github.com/elixir-lang/elixir/pull/11520#issuecomment-999901843
-rw-r--r--lib/elixir/pages/typespecs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elixir/pages/typespecs.md b/lib/elixir/pages/typespecs.md
index f14be0f70..a76de0514 100644
--- a/lib/elixir/pages/typespecs.md
+++ b/lib/elixir/pages/typespecs.md
@@ -153,7 +153,7 @@ Built-in type | Defined as
### Remote types
-Any module is also able to define its own types and the modules in Elixir are no exception. For example, the `Range` module defines a `t/0` type that represents a range: this type can be referred to as `t:Range.t/0`. In a similar fashion, a string is `t:String.t/0`, any enumerable can be `t:Enum.t/0`, and so on.
+Any module is also able to define its own types and the modules in Elixir are no exception. For example, the `Range` module defines a `t/0` type that represents a range: this type can be referred to as `t:Range.t/0`. In a similar fashion, a string is `t:String.t/0`, and so on.
### Maps