diff options
Diffstat (limited to 'ext/net/lib.rs')
-rw-r--r-- | ext/net/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/net/lib.rs b/ext/net/lib.rs index 64e28fd00..ad5b97a7a 100644 --- a/ext/net/lib.rs +++ b/ext/net/lib.rs @@ -45,8 +45,7 @@ impl UnstableChecker { pub fn check_unstable(&self, api_name: &str) { if !self.unstable { eprintln!( - "Unstable API '{}'. The --unstable flag must be provided.", - api_name + "Unstable API '{api_name}'. The --unstable flag must be provided." ); std::process::exit(70); } |