diff --git a/src/builder.rs b/src/builder.rs index a26eb31d..b786c5a4 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -40,6 +40,9 @@ impl Builder { /// Follow symlinks, archiving the contents of the file they point to rather /// than adding a symlink to the archive. Defaults to true. + /// + /// When true, it exhibits the same behavior as GNU `tar` command's + /// `--dereference` or `-h` options . pub fn follow_symlinks(&mut self, follow: bool) { self.follow = follow; }