Skip to content

Commit 1f6eba8

Browse files
authored
Fix typos in IEx i/1 for improper lists (#13633)
1 parent 2382462 commit 1f6eba8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/iex/lib/iex/info.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ defimpl IEx.Info, for: List do
207207
defp info_improper_list(_improper_list) do
208208
description = """
209209
This is what is referred to as an "improper list". An improper list is a
210-
list which its last tail is not to an empty list. For example: [1, 2, 3]
211-
is a proper list, as it is equivalent to [1, 2, 3 | []], as opposed to
212-
[1, 2 | 3] which is an improper list since its last tail returns 3.
210+
list whose last tail is not an empty list. For example: [1, 2, 3] is a
211+
proper list, as it is equivalent to [1, 2, 3 | []], as opposed to
212+
[1, 2 | 3] which is an improper list since its last tail is 3.
213213
"""
214214

215215
[

0 commit comments

Comments
 (0)