From 04707cbba630e3e4ad6b4200bef8ae7888c49e3b Mon Sep 17 00:00:00 2001 From: Nathan Lilienthal Date: Sun, 6 Jan 2019 19:06:57 -0500 Subject: Normalize Log Message Strings The general style for errors, warnings and info messages is to start with a capitalized letter and end without a period. The main exception is when dealing with nouns that are clearer with special case handling, e.g. "macOS failed to work" or "ioctl is borked". --- copypasta/src/windows.rs | 2 +- copypasta/src/x11.rs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'copypasta/src') diff --git a/copypasta/src/windows.rs b/copypasta/src/windows.rs index 8ec783b2..95e3db55 100644 --- a/copypasta/src/windows.rs +++ b/copypasta/src/windows.rs @@ -13,7 +13,7 @@ pub enum Error { impl ::std::error::Error for Error { fn description(&self) -> &str { match *self { - Error::Clipboard(..) => "error opening clipboard", + Error::Clipboard(..) => "Error opening clipboard", } } } diff --git a/copypasta/src/x11.rs b/copypasta/src/x11.rs index 4c58c0a4..c7d9c696 100644 --- a/copypasta/src/x11.rs +++ b/copypasta/src/x11.rs @@ -35,9 +35,9 @@ impl ::std::error::Error for Error { fn description(&self) -> &str { match *self { - Error::Io(..) => "error calling xclip", - Error::Xclip(..) => "error reported by xclip", - Error::Utf8(..) => "clipboard contents not utf8", + Error::Io(..) => "Error calling xclip", + Error::Xclip(..) => "Error reported by xclip", + Error::Utf8(..) => "Clipboard contents not utf8", } } } @@ -50,11 +50,11 @@ impl ::std::fmt::Display for Error { io::ErrorKind::NotFound => { write!(f, "Please install `xclip` to enable clipboard support") }, - _ => write!(f, "error calling xclip: {}", err), + _ => write!(f, "Error calling xclip: {}", err), } }, - Error::Xclip(ref s) => write!(f, "error from xclip: {}", s), - Error::Utf8(ref err) => write!(f, "error parsing xclip output: {}", err), + Error::Xclip(ref s) => write!(f, "Error from xclip: {}", s), + Error::Utf8(ref err) => write!(f, "Error parsing xclip output: {}", err), } } } -- cgit v1.2.3-54-g00ecf