Remove unnecessary escaping

This commit is contained in:
Derek Chiang 2013-12-03 18:39:23 -05:00
parent d96e104a87
commit 94dd3ff7d3

View file

@ -42,8 +42,8 @@ fn main() {
println("Usage:");
println!(" {0:s} [OPTION] NAME...", program);
println("");
print(groups::usage("Output each NAME with its last non-slash component and trailing slashes\
removed; if NAME contains no /'s, output '.' (meaning the current\
print(groups::usage("Output each NAME with its last non-slash component and trailing slashes
removed; if NAME contains no /'s, output '.' (meaning the current
directory).", opts));
return;
}