Skip to content

Commit

Permalink
Fix man pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed Oct 14, 2017
1 parent 1f9042f commit 28d097d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/bin/getty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ OPTIONS
AUTHOR
Written by Jeremy Soller.
"#;
"#; /* @MANEND */

const HELP_INFO: &'static str = "Try ‘getty --help’ for more information.\n";
const DEFAULT_COLS: u32 = 80;
Expand Down
3 changes: 2 additions & 1 deletion src/bin/login.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ OPTIONS
AUTHOR
Written by Jeremy Soller.
"#;
"#; /* @MANEND */

const ISSUE_FILE: &'static str = "/etc/issue";
const MOTD_FILE: &'static str = "/etc/motd";
const PASSWD_FILE: &'static str = "/etc/passwd";
Expand Down
3 changes: 2 additions & 1 deletion src/bin/passwd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ OPTIONS
AUTHOR
Written by Jeremy Soller.
"#;
"#; /* @MANEND */

const PASSWD_FILE: &'static str = "/etc/passwd";

fn main() {
Expand Down
3 changes: 2 additions & 1 deletion src/bin/su.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ OPTIONS
AUTHOR
Written by Jeremy Soller.
"#;
"#; /* @MANEND */

const PASSWD_FILE: &'static str = "/etc/passwd";

pub fn main() {
Expand Down
2 changes: 1 addition & 1 deletion src/bin/sudo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ EXIT STATUS
AUTHOR
Written by Jeremy Soller.
"#;
"#; /* @MANEND */

pub fn main() {
let stdin = io::stdin();
Expand Down

0 comments on commit 28d097d

Please sign in to comment.