Skip to content

Commit 88d6cd7

Browse files
committed
remove comment
1 parent 331b9da commit 88d6cd7

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/default_dict.jl

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,12 @@ a missing key returns (and stores) a default value.
2525
# Parameters
2626
2727
- `K` Key type
28-
- `V` Value type
28+
- `V` Value type
2929
- `F` Type of the default value or callable
3030
- `D` Type of the underlying dictionary
3131
- `default` Default value or callable to use for missing keys
3232
- `passkey::Bool=false` If true and default is callable, pass the key to the default function
3333
34-
# Note
35-
36-
This is an internal type. Users should use `DefaultDict` or `DefaultOrderedDict` instead.
3734
"""
3835
struct DefaultDictBase{K,V,F,D} <: AbstractDict{K,V}
3936
default::F
@@ -222,7 +219,7 @@ for _Dict in [:Dict, :OrderedDict]
222219
push!(d::$($DefaultDict), p::Pair...)
223220
224221
Insert one or more key-value pairs into the dictionary `d`.
225-
222+
226223
# Examples
227224
```jldoctest
228225
julia> d = $($DefaultDict)(0)

0 commit comments

Comments
 (0)