Skip to content

Commit ee54574

Browse files
authored
Specify that JuliaDict / JuliaSet it is a MutableMapping/Set (#692)
1 parent 92bef8a commit ee54574

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/juliacall-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ This wraps any Julia `AbstractVector` value. It is a subclass of `juliacall.Arra
158158

159159
`````@customdoc
160160
juliacall.DictValue - Class
161-
This wraps any Julia `AbstractDict` value. It is a subclass of `collections.abc.Mapping` and
161+
This wraps any Julia `AbstractDict` value. It is a subclass of `collections.abc.MutableMapping` and
162162
behaves similar to a Python `dict`.
163163
`````
164164

165165
`````@customdoc
166166
juliacall.SetValue - Class
167-
This wraps any Julia `AbstractSet` value. It is a subclass of `collections.abc.Set` and
167+
This wraps any Julia `AbstractSet` value. It is a subclass of `collections.abc.MutableSet` and
168168
behaves similar to a Python `set`.
169169
`````
170170

0 commit comments

Comments
 (0)