diff options
author | desertwitch <24509509+desertwitch@users.noreply.github.com> | 2024-07-04 17:57:25 +0200 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-07-08 09:53:08 +0200 |
commit | 366f6a6a9afa6139bae3f3061e32eda7d6c085c1 (patch) | |
tree | e69e4bb58b2091c072efff8357256b93f9708698 /example | |
parent | a36f16a3a408ca2823c8e41822cdae5c16670ac5 (diff) | |
download | libfuse-366f6a6a9afa6139bae3f3061e32eda7d6c085c1.tar.gz |
example/notify_inval_entry.c: improve comment readability
Follow the same format as other arguments passed to example commands.
Diffstat (limited to 'example')
-rw-r--r-- | example/notify_inval_entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/notify_inval_entry.c b/example/notify_inval_entry.c index 27bd84c..dd2af92 100644 --- a/example/notify_inval_entry.c +++ b/example/notify_inval_entry.c @@ -17,7 +17,7 @@ * To see the effect, first start the file system with the * ``--no-notify`` * - * $ notify_inval_entry --update-interval=1 --timeout 30 --no-notify mnt/ + * $ notify_inval_entry --update-interval=1 --timeout=30 --no-notify mnt/ * * Observe that `ls` always prints the correct directory contents * (since `readdir` output is not cached):: @@ -51,7 +51,7 @@ * In contrast, if you enable notifications you will be unable to stat * the file as soon as the file system updates its name: * - * $ notify_inval_entry --update-interval=1 --timeout 30 mnt/ + * $ notify_inval_entry --update-interval=1 --timeout=30 mnt/ * $ file=$(ls mnt/); stat mnt/$file * File: ‘mnt/Time_is_20h_42m_11s’ * Size: 0 Blocks: 0 IO Block: 4096 regular empty file |