We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6765eb commit 0229211Copy full SHA for 0229211
src/main.rs
@@ -88,7 +88,7 @@ fn watch() -> notify::Result<()> {
88
let (tx, rx) = channel();
89
90
let mut watcher: RecommendedWatcher = Watcher::new(tx, Duration::from_secs(2))?;
91
- watcher.watch("./exercises", RecursiveMode::Recursive)?;
+ watcher.watch(Path::new("./exercises"), RecursiveMode::Recursive)?;
92
93
let _ignored = verify(None);
94
0 commit comments