Fix misleading docstring

This commit is contained in:
Trysdyn Black 2020-05-01 19:34:52 -07:00
parent ba294f112d
commit 09fc83796c

View file

@ -52,8 +52,8 @@ def check_and_remove(source, destination, force=False):
def install_dotfiles(source_dir, dest_dir, exclusions, force=False):
"""
Iterates the files present in source_dir, excluding EXCLUSIONS, and syncs
them to dest_dir, overwriting files that exist if force is true.
Iterates the files present in source_dir, excluding EXCLUSIONS, and symlinks
them in dest_dir, overwriting files that exist if force is true.
"""
# source_dir needs to end in an / to make replacements work
if not source_dir.endswith("/"):