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
2 changes: 1 addition & 1 deletion lib/elixir/lib/kernel.ex
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ defmodule Kernel do
If you don't want to import a function or macro from `Kernel`, use the `:except`
option and then list the function/macro by arity:

import Kernel, except: [if: 2, unless: 2]
import Kernel, except: [if: 2, is_number: 1]

See `import/2` for more information on importing.

Expand Down
Loading