From 4c9c391862567db28dfed27260658a716da56004 Mon Sep 17 00:00:00 2001 From: Art Kay Date: Tue, 18 Feb 2025 16:15:44 -0500 Subject: [PATCH] Fix a typo This PR fixes a minor typo in the 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 d947c6351cf..4c50660f2a7 100644 --- a/lib/elixir/lib/kernel.ex +++ b/lib/elixir/lib/kernel.ex @@ -5672,7 +5672,7 @@ defmodule Kernel do > #### Narrow behaviours and entry points {: .tip} > > When defining behaviours, a general rule of thumb is to define narrow - > behaviours, with the minumum amount of callbacks, to facilitate maintenance + > behaviours, with the minimum amount of callbacks, to facilitate maintenance > over time. Fewer callbacks minimize the points of contact between different > parts of the system and reduces the risk of breaking changes and of different > implementations having inconsistent behaviour. However, when using `defoverridable`