From 33fbc757ae7fec3786d77df1ba237560e8ad3dd4 Mon Sep 17 00:00:00 2001 From: Udoh Jeremiah Date: Fri, 9 Sep 2022 16:52:02 +0100 Subject: [PATCH] =?UTF-8?q?Typo=20error=20on=20=E2=88=88=20(#46687)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base/operators.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/operators.jl b/base/operators.jl index f3a51176b7d59e..eb8a3a487c9497 100644 --- a/base/operators.jl +++ b/base/operators.jl @@ -1306,7 +1306,7 @@ Some collections follow a slightly different definition. For example, use [`haskey`](@ref) or `k in keys(dict)`. For these collections, the result is always a `Bool` and never `missing`. -To determine whether an item is not in a given collection, see [`:∉`](@ref). +To determine whether an item is not in a given collection, see [`∉`](@ref). You may also negate the `in` by doing `!(a in b)` which is logically similar to "not in". When broadcasting with `in.(items, collection)` or `items .∈ collection`, both