aboutsummaryrefslogtreecommitdiff
path: root/bin/jfcd
diff options
context:
space:
mode:
Diffstat (limited to 'bin/jfcd')
-rwxr-xr-xbin/jfcd4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/jfcd b/bin/jfcd
index b5fff5a1..8bd54e3b 100755
--- a/bin/jfcd
+++ b/bin/jfcd
@@ -1,6 +1,6 @@
#!/bin/sh
-# Watch a directory for changes and commit them with jfc(1) if there are any;
+# Watch a directory for changes and commit them with jfc(1d) if there are any;
# requires inotifywait(1)
self=jfcd
@@ -18,6 +18,6 @@ inw() {
# Directory to check is first and only argument; defaults to current directory
cd -- "${1:-.}" || exit
-# Run a while loop over inotifywait(1) calls, running jfc(1) on the working
+# Run a while loop over inotifywait(1) calls, running jfc(1d) on the working
# directory
while inw ; do jfc ; done