From d4a1092a6e3843ba0e753c00a8f3a5a1c2ba71d4 Mon Sep 17 00:00:00 2001 From: Alex Pounds Date: Mon, 25 Jul 2022 09:40:53 -0400 Subject: [PATCH] Typo fix for Kernel.in/2 documentation. --- 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 57ba7655ca2..02a253b167c 100644 --- a/lib/elixir/lib/kernel.ex +++ b/lib/elixir/lib/kernel.ex @@ -4255,7 +4255,7 @@ defmodule Kernel do when x === 1 or x === 2 or x === 3 - However, this construct will be inneficient for large lists. In such cases, it + However, this construct will be inefficient for large lists. In such cases, it is best to stop using guards and use a more appropriate data structure, such as `MapSet`.