summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnease <stephen.h.nease@gmail.com>2022-10-15 14:29:54 -0500
committerDavid Peter <sharkdp@users.noreply.github.com>2023-03-15 09:33:49 +0100
commitbbb59fd7fa170cccdb8eb7306e717805376095a3 (patch)
treeb21d01d3ed6441cf442a5124b64e6298bb798199
parent0e3bad139105de75d09e327531e798d4a53eab89 (diff)
Apply suggestions from code review
Co-authored-by: David Peter <sharkdp@users.noreply.github.com>
-rw-r--r--src/options.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.rs b/src/options.rs
index d1706c5..08f4074 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -112,10 +112,10 @@ impl Default for RunBounds {
#[derive(Debug, Clone, PartialEq)]
pub enum CommandInputPolicy {
- /// Redirect from the null device
+ /// Read from the null device
Null,
- /// Redirect input from a file
+ /// Read input from a file
File(PathBuf),
}