Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/iex/lib/iex/info.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""

[
Expand Down