Skip to content

Commit

Permalink
fix comment mentioning sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
Folkert de Vries authored and folkertdev committed Nov 17, 2023
1 parent d8f52a2 commit 185c15f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ntpd/src/daemon/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl CliArg {
where
I: IntoIterator<Item = String>,
{
// the first argument is the sudo command - so we can skip it
// the first argument is the ntp-daemon command - so we can skip it
let mut arg_iter = iter.into_iter().skip(1);
let mut processed = vec![];
let mut rest = vec![];
Expand Down
2 changes: 1 addition & 1 deletion nts-pool-ke/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl CliArg {
where
I: IntoIterator<Item = String>,
{
// the first argument is the sudo command - so we can skip it
// the first argument is the nts-pool-ke command - so we can skip it
let mut arg_iter = iter.into_iter().skip(1);
let mut processed = vec![];
let mut rest = vec![];
Expand Down

0 comments on commit 185c15f

Please sign in to comment.