Use implicit capture syntax in format_args

This updates the standard library's documentation to use the new syntax. The
documentation is worthwhile to update as it should be more idiomatic
(particularly for features like this, which are nice for users to get acquainted
with). The general codebase is likely more hassle than benefit to update: it'll
hurt git blame, and generally updates can be done by folks updating the code if
(and when) that makes things more readable with the new format.

A few places in the compiler and library code are updated (mostly just due to
already having been done when this commit was first authored).
This commit is contained in:
T-O-R-U-S
2022-02-12 23:16:17 +04:00
committed by Mark Rousskov
parent ba14a836c7
commit 72a25d05bf
177 changed files with 724 additions and 734 deletions

View File

@@ -19,7 +19,7 @@
//! B = 4;
//! A = A + B;
//! C = B;
//! println!("{} {} {}", A, B, C);
//! println!("{A} {B} {C}");
//! C = A;
//! }
//! }

View File

@@ -129,7 +129,7 @@
//!
//! // Unbounded receiver waiting for all senders to complete.
//! while let Ok(msg) = rx.recv() {
//! println!("{}", msg);
//! println!("{msg}");
//! }
//!
//! println!("completed");
@@ -376,7 +376,7 @@ impl<T> !Sync for Receiver<T> {}
/// });
///
/// for x in recv.iter() {
/// println!("Got: {}", x);
/// println!("Got: {x}");
/// }
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
@@ -419,7 +419,7 @@ pub struct Iter<'a, T: 'a> {
/// thread::sleep(Duration::from_secs(2)); // block for two seconds
///
/// for x in receiver.try_iter() {
/// println!("Got: {}", x);
/// println!("Got: {x}");
/// }
/// ```
#[stable(feature = "receiver_try_iter", since = "1.15.0")]
@@ -453,7 +453,7 @@ pub struct TryIter<'a, T: 'a> {
/// });
///
/// for x in recv.into_iter() {
/// println!("Got: {}", x);
/// println!("Got: {x}");
/// }
/// ```
#[stable(feature = "receiver_into_iter", since = "1.1.0")]
@@ -544,16 +544,16 @@ impl<T> !Sync for Sender<T> {}
/// let mut msg;
///
/// msg = receiver.recv().unwrap();
/// println!("message {} received", msg);
/// println!("message {msg} received");
///
/// // "Thread unblocked!" will be printed now
///
/// msg = receiver.recv().unwrap();
/// println!("message {} received", msg);
/// println!("message {msg} received");
///
/// msg = receiver.recv().unwrap();
///
/// println!("message {} received", msg);
/// println!("message {msg} received");
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
pub struct SyncSender<T> {
@@ -996,14 +996,14 @@ impl<T> SyncSender<T> {
///
/// let mut msg;
/// msg = receiver.recv().unwrap();
/// println!("message {} received", msg);
/// println!("message {msg} received");
///
/// msg = receiver.recv().unwrap();
/// println!("message {} received", msg);
/// println!("message {msg} received");
///
/// // Third message may have never been sent
/// match receiver.try_recv() {
/// Ok(msg) => println!("message {} received", msg),
/// Ok(msg) => println!("message {msg} received"),
/// Err(_) => println!("the third message was never sent"),
/// }
/// ```

View File

@@ -369,7 +369,7 @@ impl<T> Packet<T> {
match self.channels.fetch_sub(1, Ordering::SeqCst) {
1 => {}
n if n > 1 => return,
n => panic!("bad number of channels left {}", n),
n => panic!("bad number of channels left {n}"),
}
match self.cnt.swap(DISCONNECTED, Ordering::SeqCst) {

View File

@@ -94,7 +94,7 @@ fn test_into_inner_poison() {
assert!(m.is_poisoned());
match Arc::try_unwrap(m).unwrap().into_inner() {
Err(e) => assert_eq!(e.into_inner(), NonCopy(10)),
Ok(x) => panic!("into_inner of poisoned Mutex is Ok: {:?}", x),
Ok(x) => panic!("into_inner of poisoned Mutex is Ok: {x:?}"),
}
}
@@ -118,7 +118,7 @@ fn test_get_mut_poison() {
assert!(m.is_poisoned());
match Arc::try_unwrap(m).unwrap().get_mut() {
Err(e) => assert_eq!(*e.into_inner(), NonCopy(10)),
Ok(x) => panic!("get_mut of poisoned Mutex is Ok: {:?}", x),
Ok(x) => panic!("get_mut of poisoned Mutex is Ok: {x:?}"),
}
}

View File

@@ -73,7 +73,7 @@ pub struct Guard {
/// Ok(_) => unreachable!(),
/// Err(p_err) => {
/// let data = p_err.get_ref();
/// println!("recovered: {}", data);
/// println!("recovered: {data}");
/// }
/// };
/// ```

View File

@@ -218,7 +218,7 @@ fn test_into_inner_poison() {
assert!(m.is_poisoned());
match Arc::try_unwrap(m).unwrap().into_inner() {
Err(e) => assert_eq!(e.into_inner(), NonCopy(10)),
Ok(x) => panic!("into_inner of poisoned RwLock is Ok: {:?}", x),
Ok(x) => panic!("into_inner of poisoned RwLock is Ok: {x:?}"),
}
}
@@ -242,6 +242,6 @@ fn test_get_mut_poison() {
assert!(m.is_poisoned());
match Arc::try_unwrap(m).unwrap().get_mut() {
Err(e) => assert_eq!(*e.into_inner(), NonCopy(10)),
Ok(x) => panic!("get_mut of poisoned RwLock is Ok: {:?}", x),
Ok(x) => panic!("get_mut of poisoned RwLock is Ok: {x:?}"),
}
}