]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
fix typo in manual page
authorFrederic Grabowski <grabowski.frederic@gmail.com>
Fri, 10 May 2024 08:49:56 +0000 (10:49 +0200)
committerWayne Davison <wayne@opencoder.net>
Wed, 20 Nov 2024 05:45:50 +0000 (21:45 -0800)
rsync.1.md

index 4407a013f777bc4fd80d6d3467410e20e6332337..7e40e3617688b96a4e6c9096256404e7a2242f7b 100644 (file)
@@ -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/