about summary refs log tree commit diff
diff options
context:
space:
mode:
authorprogressive-galib <125106402+progressive-galib@users.noreply.github.com>2025-02-15 13:34:01 +0600
committerGitHub <noreply@github.com>2025-02-15 13:34:01 +0600
commite52534f7d8f634e60e7acc260f7fe2e751d1c786 (patch)
tree4ec293702c67d81aea21cadfb9cf9ece7f01e00e
parente2b522505b367546da7af2cf24be762a4acfc41e (diff)
downloadrust-e52534f7d8f634e60e7acc260f7fe2e751d1c786.tar.gz
rust-e52534f7d8f634e60e7acc260f7fe2e751d1c786.zip
tidying up tidy
-rw-r--r--library/core/src/future/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/core/src/future/mod.rs b/library/core/src/future/mod.rs
index 50c5fdc919d..65c0171c88d 100644
--- a/library/core/src/future/mod.rs
+++ b/library/core/src/future/mod.rs
@@ -46,19 +46,19 @@ pub use self::join::join;
 /// It also simplifies the HIR lowering of `.await`.
 #[lang = "ResumeTy"]
 #[doc(hidden)]
-#[unstable(feature = "gen_future", issue= "none")]
+#[unstable(feature = "gen_future", issue = "none")]
 #[derive(Debug, Copy, Clone)]
 pub struct ResumeTy(NonNull<Context<'static>>);
 
-#[unstable(feature = "gen_future", issue= "none")]
+#[unstable(feature = "gen_future", issue = "none")]
 unsafe impl Send for ResumeTy {}
 
-#[unstable(feature = "gen_future", issue= "none")]
+#[unstable(feature = "gen_future", issue = "none")]
 unsafe impl Sync for ResumeTy {}
 
 #[lang = "get_context"]
 #[doc(hidden)]
-#[unstable(feature = "gen_future", issue= "none")]
+#[unstable(feature = "gen_future", issue = "none")]
 #[must_use]
 #[inline]
 pub unsafe fn get_context<'a, 'b>(cx: ResumeTy) -> &'a mut Context<'b> {