summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bagshaw <abagshaw@users.noreply.github.com>2019-03-15 12:47:06 -0700
committerGitHub <noreply@github.com>2019-03-15 12:47:06 -0700
commita6a8b61b12173291e59dbf854b35a0601f04a6e9 (patch)
tree2b5d457c9e33216242f74b2553f531f9dabeaf94
parent6cd42bb8210b0e687942e388d66b07f286fe6bb6 (diff)
Change to \n
-rw-r--r--src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 1b62e28..9451f11 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -88,8 +88,7 @@ fn watch() -> notify::Result<()> {
Ok(event) => match event {
DebouncedEvent::Create(b) | DebouncedEvent::Chmod(b) | DebouncedEvent::Write(b) => {
if b.extension() == Some(OsStr::new("rs")) {
- println!("----------**********----------");
- println!();
+ println!("----------**********----------\n");
let _ignored = verify(Some(b.as_path().to_str().unwrap()));
}
}