From ebeab6fdf0822e7dce495a3a1697398da30b0834 Mon Sep 17 00:00:00 2001 From: Wes Roberts Date: Mon, 3 Aug 2020 10:15:16 -0400 Subject: [PATCH] Adds note about in-place file modification to --help output --- src/app.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app.rs b/src/app.rs index 361ee2f..924d277 100644 --- a/src/app.rs +++ b/src/app.rs @@ -37,5 +37,7 @@ w - match full words only pub replace_with: String, /// The path to file(s). This is optional - sd can also read from STDIN. + /// Note: sd modifies files in-place by default. See documentation for + /// examples. pub files: Vec, }