Subject: | [PATCH] correct spelling errors |
Date: | Fri, 19 Feb 2010 01:36:20 +0900 |
To: | bug-Tree-Simple-VisitorFactory [...] rt.cpan.org |
From: | Ansgar Burchardt <ansgar [...] 43-1.org> |
Hi,
the attached patch was introduced in Debian to correct spelling errors
in the documentation. Please consider applying it.
Regards,
Ansgar
From: Ansgar Burchardt <ansgar@43-1.org>
Date: Fri, 19 Feb 2010 01:32:02 +0900
Forwarded:
Subject: Correct spelling errors
This patch corrects several spelling errors pointed out by lintian.
--- libtree-simple-visitorfactory-perl.orig/lib/Tree/Simple/Visitor/CreateDirectoryTree.pm
+++ libtree-simple-visitorfactory-perl/lib/Tree/Simple/Visitor/CreateDirectoryTree.pm
@@ -155,7 +155,7 @@
=item Any node (including leaf nodes) which ends in either the character C</> or C<\> is considered a directory.
-I think it is a pretty standard convention to have directory names ending in a seperator. The seperator itself is stripped off before the directory name is passed to File::Spec where the platform specific directory path is created. This means that it does not matter which one you use, it will be completely cross platform (at least as cross-platform as File::Spec is).
+I think it is a pretty standard convention to have directory names ending in a separator. The separator itself is stripped off before the directory name is passed to File::Spec where the platform specific directory path is created. This means that it does not matter which one you use, it will be completely cross platform (at least as cross-platform as File::Spec is).
=item All other nodes are considered to be files.
--- libtree-simple-visitorfactory-perl.orig/lib/Tree/Simple/Visitor/PreOrderTraversal.pm
+++ libtree-simple-visitorfactory-perl/lib/Tree/Simple/Visitor/PreOrderTraversal.pm
@@ -52,7 +52,7 @@
=head1 DESCRIPTION
-Pre-order traversal is a depth-first traversal method in which the sub-tree's are processed I<after> the parent. It is essentially a wrapper around the base Tree::Simple::Visitor class, and is a seperate module here for completeness. (If you have a post-order, you should have a pre-order too).
+Pre-order traversal is a depth-first traversal method in which the sub-tree's are processed I<after> the parent. It is essentially a wrapper around the base Tree::Simple::Visitor class, and is a separate module here for completeness. (If you have a post-order, you should have a pre-order too).
=head1 METHODS