summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEksperimental <eksperimental@users.noreply.github.com>2017-05-22 17:00:14 -0500
committerJosé Valim <jose.valim@gmail.com>2017-05-23 00:00:14 +0200
commitbe130f66339eb831329c712a6ac19a8d740873ce (patch)
treedf664cc2a5b774395335090c8ae84ba8567c7f9d
parent481280e3218a9600c42c8c8649bf120eb231eea3 (diff)
downloadelixir-be130f66339eb831329c712a6ac19a8d740873ce.tar.gz
Document deprecation of Integer.to_char_list/2 and List.Chars.to_char_list/1 (#6134)
-rw-r--r--lib/elixir/pages/Deprecations.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/elixir/pages/Deprecations.md b/lib/elixir/pages/Deprecations.md
index 1edebc371..f51cdb9ca 100644
--- a/lib/elixir/pages/Deprecations.md
+++ b/lib/elixir/pages/Deprecations.md
@@ -22,8 +22,9 @@ Passing a non-Time to `Time.to_iso8601/1` | [v1.5] | Explicitly co
`Atom.to_char_list/1` | [v1.5] | `Atom.to_charlist/1` (v1.3)
`Float.to_char_list/1` | [v1.5] | `Float.to_charlist/1` (v1.3)
`GenEvent` module | [v1.5] | `Supervisor` and `GenServer` (v1.0);<br/>[`GenStage`](https://hex.pm/packages/gen_stage) (v1.3);<br/>[`:gen_event`](http://www.erlang.org/doc/man/gen_event.html) (OTP 17)
-`Integer.to_char_list/1` | [v1.5] | `Integer.to_charlist/1` (v1.3)
+`Integer.to_char_list/1` and `Integer.to_char_list/2` | [v1.5] | `Integer.to_charlist/1` and `Integer.to_charlist/2` (v1.3)
`Kernel.to_char_list/1` | [v1.5] | `Kernel.to_charlist/1` (v1.3)
+`List.Chars.to_char_list/1` | [v1.5] | `List.Chars.to_charlist/1` (v1.3)
`String.ljust/3` and `String.rjust/3` | [v1.5] | `String.pad_leading/3` and `String.pad_trailing/3` with a binary padding (v1.3)
`String.strip/1` and `String.strip/2` | [v1.5] | `String.trim/1` and `String.trim/2` (v1.3)
`String.lstrip/1` and `String.rstrip/1` | [v1.5] | `String.trim_leading/1` and `String.trim_trailing/1` (v1.3)