From f85103eac5cbad1fe1c43c3a69874b3c4528961b Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 14 Jun 2026 21:38:58 +1000 Subject: [PATCH] fix: deployer place dir docstring --- src/caelestia/utils/dots/deployer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/caelestia/utils/dots/deployer.py b/src/caelestia/utils/dots/deployer.py index 586bc046..e8f766bd 100644 --- a/src/caelestia/utils/dots/deployer.py +++ b/src/caelestia/utils/dots/deployer.py @@ -15,7 +15,7 @@ class Deployer: self.place_file(src, dest) def place_dir(self, src: Path, dest: Path) -> None: - """Place a directory tree recursively, replacing any existing dest.""" + """Place a directory tree recursively, overwriting any existing dest files.""" if dest.is_symlink() or dest.is_file(): self.remove(dest)