Skip to content

Commit

Permalink
Fix Opt::parse_args doc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
allan2 committed Aug 23, 2024
1 parent d425379 commit 9a934bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 9a934bc

Please sign in to comment.