From 945dc7b84bc1a05f80b3b4e0b152be38d9f8a9bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 11 Sep 2019 23:34:22 +0200 Subject: fix: panic during fetch (#2925) --- core/any_error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/any_error.rs') diff --git a/core/any_error.rs b/core/any_error.rs index 9199af59e..60c508e7d 100644 --- a/core/any_error.rs +++ b/core/any_error.rs @@ -5,7 +5,7 @@ use std::fmt; use std::ops::Deref; // The Send and Sync traits are required because deno is multithreaded and we -// need to beable to handle errors across threads. +// need to be able to handle errors across threads. pub trait AnyError: Any + Error + Send + Sync + 'static {} impl AnyError for T where T: Any + Error + Send + Sync + Sized + 'static {} -- cgit v1.2.3