Skip to content

Commit

Permalink
Fix Opt::parse_args doc typo
Browse files Browse the repository at this point in the history
Includes-commit: 9a934bc
Replicated-from: #360
  • Loading branch information
allan2 authored and drcaramelsyrup committed Sep 6, 2024
1 parent 5a4a288 commit 4446912
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bleep
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ed4f7c51958b688c6bea000c37dc2ba54f2ccc15
b0ee94e1ce384cb2d23a40bf6c7a4b7e32541412
2 changes: 1 addition & 1 deletion pingora-core/src/server/configuration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl Default for ServerConf {

/// Command-line options
///
/// Call `Opt::from_args()` to build this object from the process's command line arguments.
/// Call `Opt::parse_args()` to build this object from the process's command line arguments.
#[derive(Parser, Debug, Default)]
#[clap(name = "basic", long_about = None)]
pub struct Opt {
Expand Down
2 changes: 1 addition & 1 deletion pingora-core/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ impl Server {
/// independent services.
///
/// Command line options can either be passed by parsing the command line arguments via
/// `Opt::from_args()`, or be generated by other means.
/// `Opt::parse_args()`, or be generated by other means.
pub fn new(opt: impl Into<Option<Opt>>) -> Result<Server> {
let opt = opt.into();
let (tx, rx) = watch::channel(false);
Expand Down

0 comments on commit 4446912

Please sign in to comment.