diff --git a/src/PersistentCollections.jl b/src/PersistentCollections.jl index 431ec7a..e77b807 100644 --- a/src/PersistentCollections.jl +++ b/src/PersistentCollections.jl @@ -11,7 +11,7 @@ module PersistentCollections PersistentDict{K,V}(env; id="") where {K,V} = new{K,V}(env, id) end - Base.show(io::IO, d::PersistentDict) = print(io, typeof(d), "(", isempty(d.id) ? "" : repr(e.id), ")") + Base.show(io::IO, d::PersistentDict) = print(io, typeof(d), "(", isempty(d.id) ? "" : repr(d.id), ")") function rotxn(func::Function, d::PersistentDict) isopen(d.env) || error("Environment is closed")