From 056c14617565291cb00df9fec6f9779a3669089f Mon Sep 17 00:00:00 2001 From: andy finch Date: Thu, 18 Jul 2019 17:48:44 -0400 Subject: Fix expected dyn before AnyError trait (#2663) --- core/any_error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/any_error.rs b/core/any_error.rs index 001ca54eb..9199af59e 100644 --- a/core/any_error.rs +++ b/core/any_error.rs @@ -43,7 +43,7 @@ impl AsRef for ErrBox { } impl Deref for ErrBox { - type Target = Box; + type Target = Box; fn deref(&self) -> &Self::Target { &self.0 } -- cgit v1.2.3