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