From d85447c4fb430e26fee5c3f85997aba1448c29ba Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sat, 21 May 2011 21:55:05 -0400 Subject: [PATCH] stdlib: Use initial caps for all error messages in std::getopts --- src/lib/getopts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/getopts.rs b/src/lib/getopts.rs index d6e209739d0..c6850a0125e 100644 --- a/src/lib/getopts.rs +++ b/src/lib/getopts.rs @@ -116,7 +116,7 @@ fn fail_str(fail_ f) -> str { "Required option '" + nm + "' missing." } case (option_duplicated(?nm)) { - "option '" + nm + "' given more than once." + "Option '" + nm + "' given more than once." } case (unexpected_argument(?nm)) { "Option " + nm + " does not take an argument."