From f33180bf8af1f8880a4cf9d8bff625a9a51982cd Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 30 Jul 2022 18:10:39 +0100 Subject: [PATCH] Simplify cargo watch command taken from #278 --- docs/autoreload.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/autoreload.md b/docs/autoreload.md index e234d63..f19e6b9 100644 --- a/docs/autoreload.md +++ b/docs/autoreload.md @@ -7,8 +7,8 @@ title: Auto-Reloading During development it can be very handy to have cargo automatically recompile the code on changes. This can be accomplished very easily by using [`cargo-watch`]. ```sh -cargo watch -x 'run --bin app' -``` + cargo watch -x run + ``` ## Historical Note