renamed project
3 files changed, 3 insertions(+), 3 deletions(-)

M Cargo.lock
M Cargo.toml
M src/main.rs
M Cargo.lock +1 -1
@@ 1,5 1,5 @@ 
 [root]
-name = "tlife"
+name = "cursedlife"
 version = "0.0.1"
 dependencies = [
  "getopts 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",

          
M Cargo.toml +1 -1
@@ 1,5 1,5 @@ 
 [package]
-name = "tlife"
+name = "cursedlife"
 version = "0.0.1"
 authors = ["dermetfan"]
 

          
M src/main.rs +1 -1
@@ 47,7 47,7 @@ fn main() {
     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 TITLE: &'static str = "tlife\nCopyright 2015 Robin Stumm\nhttp://dermetfan.net";
+        const TITLE: &'static str = "cursedlife\nCopyright 2015 Robin Stumm\nhttp://dermetfan.net";
         let help = if short {
             options.short_usage(TITLE)
         } else {