From 0edf761d223865677fd57398f63b0ca4e69de4ef Mon Sep 17 00:00:00 2001 From: Benjamin Sago Date: Sat, 24 Jan 2015 16:02:52 +0000 Subject: [PATCH] Add all-important dots --- src/options.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/options.rs b/src/options.rs index 9456019..5b104d6 100644 --- a/src/options.rs +++ b/src/options.rs @@ -168,9 +168,9 @@ impl fmt::Display for Misfire { match *self { InvalidOptions(ref e) => write!(f, "{}", e), Help(ref text) => write!(f, "{}", text), - Conflict(a, b) => write!(f, "Option --{} conflicts with option {}", a, b), - Useless(a, false, b) => write!(f, "Option --{} is useless without option --{}", a, b), - Useless(a, true, b) => write!(f, "Option --{} is useless given option --{}", a, b), + Conflict(a, b) => write!(f, "Option --{} conflicts with option {}.", a, b), + Useless(a, false, b) => write!(f, "Option --{} is useless without option --{}.", a, b), + Useless(a, true, b) => write!(f, "Option --{} is useless given option --{}.", a, b), } } }