From 951d8ab4ce00b9208bdd7dce89b7100e780ee935 Mon Sep 17 00:00:00 2001 From: Nicholas Bauer Date: Sat, 3 Apr 2021 13:12:10 -0400 Subject: [PATCH] docs: Reference functions instead of methods (#38986) By referencing methods sometimes and not just functions, there was some duplication and confusion. For instance, we had `get(::Any, ::Any, ::Any)` method and also a `get` function, the latter of which duplicated the documentation for the former on the same page. --- doc/src/base/collections.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/src/base/collections.md b/doc/src/base/collections.md index 347d2d33724d4..fe4d8f80b1cd0 100644 --- a/doc/src/base/collections.md +++ b/doc/src/base/collections.md @@ -200,10 +200,8 @@ Base.IdDict Base.WeakKeyDict Base.ImmutableDict Base.haskey -Base.get(::Any, ::Any, ::Any) Base.get -Base.get!(::Any, ::Any, ::Any) -Base.get!(::Function, ::Any, ::Any) +Base.get! Base.getkey Base.delete! Base.pop!(::Any, ::Any, ::Any)