diff options
Diffstat (limited to 'core/any_error.rs')
-rw-r--r-- | core/any_error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<T> AnyError for T where T: Any + Error + Send + Sync + Sized + 'static {} |