@@ -7,7 +7,7 @@ defmodule IEx.Options do
7
7
8
8
If the value of an option is a keyword list, only those keys that are
9
9
mentioned will be changed. The rest of the sub-options will keep their
10
- current values.
10
+ current values. Any extraneous keys are filtered out, i.e. not used.
11
11
12
12
To get the list of all supported options, use `list/0`. You can also get an
13
13
option's description using `print_help/1`.
@@ -39,9 +39,6 @@ defmodule IEx.Options do
39
39
This is an aggregate option that encapsulates all color settings used
40
40
by the shell.
41
41
42
- The value is a keyword list that should have any of the following keys
43
- specified. If any of the keys is omitted, that color is not changed.
44
-
45
42
* enabled -- boolean value that allows for switching the coloring
46
43
on and off
47
44
@@ -56,16 +53,10 @@ defmodule IEx.Options do
56
53
inspect: [
57
54
doc: """
58
55
Control the behavior of the shell's inspecting algorithm. Inspect is
59
- used for printing results of evaluating expressions. It is also used by IO.inspect.
60
-
61
- The value is a keyword list that should have any of the following keys
62
- specified. If any of the keys is omitted, that option is not changed.
63
-
64
- * raw -- when true, record tuples are not formatted by the inspect protocol,
65
- but are printed as just tuples; default: false
56
+ used for printing results of evaluating expressions. It is also used by
57
+ IO.inspect.
66
58
67
- * limit -- limits the number of items that are printed for tuples, bitstrings,
68
- and lists; does not apply to strings
59
+ See the doc for `Kernel.inspect/2` for the full list of options.
69
60
70
61
"""
71
62
] ,
0 commit comments