From 321dd78f8cbdb5d01fa8628eb872e967f19e0883 Mon Sep 17 00:00:00 2001 From: Frederic Grabowski Date: Fri, 10 May 2024 10:49:56 +0200 Subject: [PATCH] fix typo in manual page --- rsync.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsync.1.md b/rsync.1.md index 4407a013..7e40e361 100644 --- a/rsync.1.md +++ b/rsync.1.md @@ -3995,7 +3995,7 @@ option (though the 2 commands behave differently if deletions are enabled): > rsync -aiR x/y/file.txt host:/tmp/ The following command does not need an include of the "x" directory because it -is not a part of the transfer (note the traililng slash). Running this command +is not a part of the transfer (note the trailing slash). Running this command would copy just "`/tmp/x/file.txt`" because the "y" and "z" dirs get excluded: > rsync -ai -f'+ file.txt' -f'- *' x/ host:/tmp/x/ -- 2.11.4.GIT