We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2f49ee commit 32bcb81Copy full SHA for 32bcb81
library/std/src/error.rs
@@ -837,8 +837,8 @@ impl dyn Error + Send + Sync {
837
/// impl<'a> Error for SuperError<'a> {}
838
///
839
/// // Note that the error doesn't need to be `Send` or `Sync`.
840
-/// impl !Send for SuperError {}
841
-/// impl !Sync for SuperError {}
+/// impl<'a> !Send for SuperError<'a> {}
+/// impl<'a> !Sync for SuperError<'a> {}
842
843
/// fn main() {
844
/// let msg = String::from("Huzzah!");
0 commit comments