diff options
Diffstat (limited to 'runtime/ops/mod.rs')
-rw-r--r-- | runtime/ops/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/ops/mod.rs b/runtime/ops/mod.rs index e42f61a7b..ce7c52d64 100644 --- a/runtime/ops/mod.rs +++ b/runtime/ops/mod.rs @@ -36,8 +36,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); } |