From f01145ac6cc4d74c6ad50bdb8a5aad6683d0a9da Mon Sep 17 00:00:00 2001 From: Wojtek Mach Date: Thu, 12 Dec 2024 11:51:31 +0100 Subject: [PATCH] Update Kernel docs --- lib/elixir/lib/kernel.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elixir/lib/kernel.ex b/lib/elixir/lib/kernel.ex index e31ed3ac46b..be5680ebe2a 100644 --- a/lib/elixir/lib/kernel.ex +++ b/lib/elixir/lib/kernel.ex @@ -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.