From 4d2c92f6d5cbe874d4e8e19e20c65b9c03538fe4 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Fri, 24 May 2024 09:38:25 +0000 Subject: [PATCH] rust/pvapconfig: Fix `expected out doc comment` error[E0753]: expected outer doc comment Signed-off-by: Marc Hartmayer Reviewed-by: Steffen Eiden Signed-off-by: Steffen Eiden --- rust/pvapconfig/src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/pvapconfig/src/cli.rs b/rust/pvapconfig/src/cli.rs index 917dc9b6..3088ca17 100644 --- a/rust/pvapconfig/src/cli.rs +++ b/rust/pvapconfig/src/cli.rs @@ -2,7 +2,6 @@ // // Copyright IBM Corp. 2023 // -//! Command line interface for pvapconfig // use clap::Parser; @@ -11,6 +10,7 @@ use lazy_static::lazy_static; /// The default pvapconfig config file pub const PATH_DEFAULT_CONFIG_FILE: &str = "/etc/pvapconfig.yaml"; +/// Command line interface for pvapconfig #[derive(Parser, Clone)] pub struct Cli { /// Provide a custom config file (overwrites default /etc/pvapconfig.yaml).