From 5576e6d79de3c254f23915e12d7bfff564e9995b Mon Sep 17 00:00:00 2001 From: Zalan Blenessy Date: Mon, 17 Aug 2020 12:09:58 +0200 Subject: [PATCH] Fixed bug e.id -> d.id --- src/PersistentCollections.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")