# HG changeset patch # User dermetfan # Date 1435299927 -7200 # Fri Jun 26 08:25:27 2015 +0200 # Node ID 90895e999bdd0775b05e2d4b57edc49737161cca # Parent fc20d8d542f8f11b8bae3b78da42f84d16cd097c changed help notice diff --git a/src/main.rs b/src/main.rs --- a/src/main.rs +++ b/src/main.rs @@ -47,11 +47,11 @@ options.optopt("b", ARG_BORDER, "Draw a border around the grid. Valid TYPEs are: blank, single (default), double, strong, thin, thick, solid", "TYPE"); let print_help = |short: bool| { - const APP_NAME: &'static str = "tlife"; + const TITLE: &'static str = "tlife\nCopyright 2015 Robin Stumm\nhttp://dermetfan.net"; let help = if short { - options.short_usage(APP_NAME) + options.short_usage(TITLE) } else { - options.usage(APP_NAME) + options.usage(TITLE) }; println!("{}", help); };