diff --git a/lib/iex/lib/iex/info.ex b/lib/iex/lib/iex/info.ex index b1b9c0fae8c..62d99fb0b36 100644 --- a/lib/iex/lib/iex/info.ex +++ b/lib/iex/lib/iex/info.ex @@ -207,9 +207,9 @@ defimpl IEx.Info, for: List do defp info_improper_list(_improper_list) do description = """ This is what is referred to as an "improper list". An improper list is a - list which its last tail is not to an empty list. For example: [1, 2, 3] - is a proper list, as it is equivalent to [1, 2, 3 | []], as opposed to - [1, 2 | 3] which is an improper list since its last tail returns 3. + list whose last tail is not an empty list. For example: [1, 2, 3] is a + proper list, as it is equivalent to [1, 2, 3 | []], as opposed to + [1, 2 | 3] which is an improper list since its last tail is 3. """ [