Skip to content

Commit

Permalink
Fix new clippy hint
Browse files Browse the repository at this point in the history
  • Loading branch information
stephank committed Nov 30, 2023
1 parent a80707a commit e0ee251
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const VERSION: &str = env!("CARGO_PKG_VERSION");
/// Defines the program's usage string.
///
/// [Docopt](http://docopt.org) parses this and generates a custom argv parser.
const USAGE: &str = r#"
const USAGE: &str = r"
Portier Broker
Usage:
Expand All @@ -75,7 +75,7 @@ Options:
--dry-run Parse PEM to be imported, but don't apply changes
--export-keys FILE Export currently active private keys as PEM
"#;
";

/// Holds parsed command line parameters.
#[derive(Deserialize)]
Expand Down

0 comments on commit e0ee251

Please sign in to comment.