Remove the useless indentation

This commit is contained in:
Lzu Tao 2020-07-10 15:59:25 +00:00
parent 9a8b516de0
commit 1e05e09fe9

View File

@ -641,9 +641,8 @@ where
#[stable(feature = "rust1", since = "1.0.0")] #[stable(feature = "rust1", since = "1.0.0")]
pub fn current() -> Thread { pub fn current() -> Thread {
thread_info::current_thread().expect( thread_info::current_thread().expect(
"use of std::thread::current() is not \ "use of std::thread::current() is not possible \
possible after the thread's local \ after the thread's local data has been destroyed",
data has been destroyed",
) )
} }