Codebase list libconfig-properties-perl-upstream / f20bd77
fix spelling errors Salvador Fandino 10 years ago
3 changed file(s) with 21 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
55 'VERSION_FROM' => 'lib/Config/Properties.pm',
66 'PREREQ_PM' => { 'Test::More' => 0,
77 'File::Temp' => 0,
8 'Text::Wrap' => 2001.0929 } );
8 'Text::Wrap' => '2001.0929' } );
609609 writing and manipulation of Java-style property files.
610610
611611 The format of a Java-style property file is that of a key-value pair
612 seperated by either whitespace, the colon (:) character, or the equals
612 separated by either whitespace, the colon (:) character, or the equals
613613 (=) character. Whitespace before the key and on either side of the
614 seperator is ignored.
614 separator is ignored.
615615
616616 Lines that begin with either a hash (#) or a bang (!) are considered
617617 comment lines and ignored.
688688 by C<properties> and C<propertyNames> methods.
689689
690690 C<alpha> sorts the keys in alphanumeric order. C<keep> keeps the order
691 of the properties as added or readed from a file. C<none> returns the
691 of the properties as added or read from a file. C<none> returns the
692692 properties unordered.
693693
694694 =item encoding => $encoding
814814 =item $p-E<gt>setFromTree($tree, $separator, $start)
815815
816816 This method sets properties from a tree of Perl hashes and arrays. It
817 is the opposite to splitToTree.
817 is the opposite of C<splitToTree>.
818818
819819 C<$separator> is the string used to join the parts of the property
820820 names. The default value is a dot (C<.>).
897897 =head1 AUTHORS
898898
899899 C<Config::Properties> was originally developed by Randy Jay Yarger. It
900 was mantained for some time by Craig Manley and finally it passed
900 was maintained for some time by Craig Manley and finally it passed
901901 hands to Salvador FandiE<ntilde>o <sfandino@yahoo.com>, the current
902902 maintainer.
903903
0 #!/usr/bin/perl
1
2 use strict;
3 use warnings;
4 use Test::More;
5
6 eval "use Test::Spelling";
7 plan skip_all => "Test::Spelling required for testing POD spelling" if $@;
8
9 my @ignore = ("Fandi\xf1o", "API", "CPAN", "GitHub", "TODO", "Yarger", );
10
11 local $ENV{LC_ALL} = 'C';
12 add_stopwords(@ignore);
13 all_pod_files_spelling_ok();
14