dotfiles.t: improve comment descriptions

This commit is contained in:
Adam Spiers 2024-03-03 18:30:21 +00:00
parent 6519ee8426
commit 457fa98527

View file

@ -35,7 +35,7 @@ cd("$TEST_DIR/target");
my $stow; my $stow;
# #
# process a dotfile marked with 'dot' prefix # stow a dotfile marked with 'dot' prefix
# #
$stow = new_Stow(dir => '../stow', dotfiles => 1); $stow = new_Stow(dir => '../stow', dotfiles => 1);
@ -70,7 +70,7 @@ is(
# #
# process folder marked with 'dot' prefix # stow folder marked with 'dot' prefix
# #
$stow = new_Stow(dir => '../stow', dotfiles => 1); $stow = new_Stow(dir => '../stow', dotfiles => 1);
@ -87,7 +87,7 @@ is(
); );
# #
# corner case: paths that have a part in them that's just "$DOT_PREFIX" or # corner case: paths with a part in them that's just "$DOT_PREFIX" or
# "$DOT_PREFIX." should not have that part expanded. # "$DOT_PREFIX." should not have that part expanded.
# #