diff --git a/proxmox-lang/src/lib.rs b/proxmox-lang/src/lib.rs index cf191c0b..0abfd507 100644 --- a/proxmox-lang/src/lib.rs +++ b/proxmox-lang/src/lib.rs @@ -31,7 +31,6 @@ pub mod ops; /// }) /// .map_err(|e| format_err!("my try block returned an error - {}", e)); /// ``` - #[macro_export] macro_rules! try_block { { $($token:tt)* } => {{ (|| -> Result<_,_> { $($token)* })() }} diff --git a/proxmox-router/src/cli/mod.rs b/proxmox-router/src/cli/mod.rs index 2b5a69c8..2393da31 100644 --- a/proxmox-router/src/cli/mod.rs +++ b/proxmox-router/src/cli/mod.rs @@ -306,7 +306,7 @@ impl CliCommandMap { /// Builder style method to set extra options for the entire set of subcommands, taking a /// prepared `GlobalOptions` for potential /// Can be used multiple times. - + /// /// Finish the command line interface. pub fn build(self) -> CommandLineInterface { self.into()