Skip to content

Commit 800281a

Browse files
author
Eugene Ponizovsky
committed
Minor changes in POD
1 parent 231ba9f commit 800281a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Changes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Revision history for Perl extension Config::Processor.
22

3-
0.04 Wed Apr 28 14:39:38 MSK 2016
3+
0.06 Thu Apr 28 20:51:52 MSK 2016
4+
- Minor changes in POD
5+
6+
0.04 Thu Apr 28 14:39:38 MSK 2016
47
- Data::Rmap was replaced by own function.
58
- Fixed wrong behavior during processing of directives.
69
- Improved logic of tree traversal.

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Config-Processor version 0.05_01
1+
Config-Processor version 0.06
22
========================
33

44
INSTALLATION

lib/Config/Processor.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.008000;
44
use strict;
55
use warnings;
66

7-
our $VERSION = '0.05_01';
7+
our $VERSION = '0.06';
88

99
use File::Spec;
1010
use YAML::XS qw( LoadFile );
@@ -432,7 +432,7 @@ Config::Processor merges all configuration sections in one resulting configurati
432432
433433
HASH \%a SCALAR $b SCALAR $b
434434
HASH \%a ARRAY \@b ARRAY \@b
435-
HASH \%a HASH \%b HASH { %a, %b }
435+
HASH \%a HASH \%b HASH recursive_merge( \%a, \%b )
436436
437437
For example, we have two configuration files. F<db.yml> at the left side:
438438
@@ -592,7 +592,7 @@ For example, you can use this directive to set default values of parameters.
592592
username: "stat_reader"
593593
password: "stat_reader_pass"
594594
595-
You can move default parameters in separate file.
595+
You can move default parameters in separate files.
596596
597597
myapp:
598598
db:

0 commit comments

Comments
 (0)