diff --git a/.all-contributorsrc b/.all-contributorsrc
index 66056aa7..659c289b 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -1749,6 +1749,24 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "0xMySt1c",
+ "name": "0xMySt1c",
+ "avatar_url": "https://avatars.githubusercontent.com/u/101825630?v=4",
+ "profile": "https://github.com/0xMySt1c",
+ "contributions": [
+ "tool"
+ ]
+ },
+ {
+ "login": "AxolotlTears",
+ "name": "Ten",
+ "avatar_url": "https://avatars.githubusercontent.com/u/87157047?v=4",
+ "profile": "https://github.com/AxolotlTears",
+ "contributions": [
+ "code"
+ ]
}
],
"contributorsPerLine": 8,
diff --git a/.gitpod.yml b/.gitpod.yml
index 73cb802d..06919335 100644
--- a/.gitpod.yml
+++ b/.gitpod.yml
@@ -4,4 +4,4 @@ tasks:
vscode:
extensions:
- - rust-lang.rust@0.7.8
+ - rust-lang.rust-analyzer@0.3.1348
diff --git a/AUTHORS.md b/AUTHORS.md
index 06b56818..7d3d4f9d 100644
--- a/AUTHORS.md
+++ b/AUTHORS.md
@@ -248,6 +248,10 @@ authors.
 seporterfield 🖋 |
 David Barroso 🚇 |
 Tobias Klauser 💻 |
+  0xMySt1c 🔧 |
+
+
+  Ten 💻 |
diff --git a/info.toml b/info.toml
index 1135c914..66f78abb 100644
--- a/info.toml
+++ b/info.toml
@@ -1072,7 +1072,7 @@ name = "clippy1"
path = "exercises/clippy/clippy1.rs"
mode = "clippy"
hint = """
-Rust stores the highest precision version of any long or inifinite precision
+Rust stores the highest precision version of any long or infinite precision
mathematical constants in the Rust standard library.
https://doc.rust-lang.org/stable/std/f32/consts/index.html
diff --git a/src/main.rs b/src/main.rs
index 7e9156fb..59adb418 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -350,7 +350,7 @@ fn watch(exercises: &[Exercise], verbose: bool) -> notify::Result {
let (tx, rx) = channel();
let should_quit = Arc::new(AtomicBool::new(false));
- let mut watcher: RecommendedWatcher = Watcher::new(tx, Duration::from_secs(2))?;
+ let mut watcher: RecommendedWatcher = Watcher::new(tx, Duration::from_secs(1))?;
watcher.watch(Path::new("./exercises"), RecursiveMode::Recursive)?;
clear_screen();