summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEksperimental <eksperimental@users.noreply.github.com>2018-05-01 15:32:47 +0700
committerJosé Valim <jose.valim@gmail.com>2018-05-01 16:32:47 +0800
commit4cf0c8c9dbd07c0400ae1d9c1a8bc87047cff447 (patch)
treea781390ffdac1845f6568a1819e67e230cfa9a86
parent2f9c7217f8bc7403851b84816cdc30d70257f2e7 (diff)
downloadelixir-4cf0c8c9dbd07c0400ae1d9c1a8bc87047cff447.tar.gz
Update page list in Kernel (#7632)
-rw-r--r--lib/elixir/lib/kernel.ex6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/elixir/lib/kernel.ex b/lib/elixir/lib/kernel.ex
index 5db41f040..eefe28cc7 100644
--- a/lib/elixir/lib/kernel.ex
+++ b/lib/elixir/lib/kernel.ex
@@ -129,14 +129,18 @@ defmodule Kernel do
Elixir documentation also includes supporting documents under the
"Pages" section. Those are:
- * [Deprecations](deprecations.html) - lists all deprecated functions,
+ * [Compatibility and Deprecations](compatibility-and-deprecations.html) - lists compatibility
+ between every Elixir version and Erlang/OTP, release schema; lists all deprecated functions,
when they were deprecated and alternatives
* [Guards](guards.html) - lists all available guards and extensions
+ * [Library Guidelines](library-guidelines.html) - general guidelines, anti-patterns, and rules
+ for those writing libraries
* [Naming Conventions](naming-conventions.html) - naming conventions
for Elixir code
* [Operators](operators.html) - lists all Elixir operators and their
precedence
* [Syntax Reference](syntax-reference.html) - the language syntax reference
+ * [Typespecs](typespecs.html)- types and function specifications, including list of types
* [Unicode Syntax](unicode-syntax.html) - outline Elixir support for Unicode
* [Writing Documentation](writing-documentation.html) - guidelines for
writing documentation in Elixir.