File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ defmodule Kernel do
27
27
If you don't want to import a function or macro from `Kernel`, use the `:except`
28
28
option and then list the function/macro by arity:
29
29
30
- import Kernel, except: [if: 2, unless: 2]
30
+ import Kernel, except: [if: 2, unless: 2]
31
31
32
32
See `Kernel.SpecialForms.import/2` for more information on importing.
33
33
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ defmodule Tuple do
6
6
7
7
* `elem/2` - access a tuple by index
8
8
* `put_elem/3` - insert a value into a tuple by index
9
- * `tuple_size/3 ` - get the number of elements in a tuple
9
+ * `tuple_size/1 ` - get the number of elements in a tuple
10
10
11
11
Tuples are intended as fixed-size containers for multiple elements.
12
12
To manipulate a collection of elements, use a list instead. `Enum`
You can’t perform that action at this time.
0 commit comments