Skip to content

Commit eaec0bc

Browse files
committed
Fix spelling mistake
1 parent ff1dc0d commit eaec0bc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Puppet module for phpbrew.
77

88
phpbrew::install{ '5.3.27':
99
$version = '',
10-
$build_prameters = undef,
10+
$build_parameters = undef,
1111
$php_inis = undef,
1212
$install_dir = '/opt/phpbrew',
1313
)
@@ -19,7 +19,7 @@ You can additional define the version (if the name should be different), the bui
1919

2020
phpbrew::install{ 'php-5.3.27':
2121
$version => '5.3.27',
22-
$build_prameters => '+mysql',
22+
$build_parameters => '+mysql',
2323
$php_inis => [
2424
'/etc/php5/mods-available/custom.ini'
2525
],
@@ -29,7 +29,7 @@ You can additional define the version (if the name should be different), the bui
2929
Default values:
3030

3131
$version = '',
32-
$build_prameters = undef
32+
$build_parameters = undef
3333
$php_inis = undef
3434
$install_dir = '/opt/phpbrew'
3535

@@ -75,4 +75,4 @@ Default values:
7575
## Copyright
7676

7777
Alexander Schneider - Jankowfsky AG
78-
www.jankowfsky.com
78+
www.jankowfsky.com

manifests/install.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
define phpbrew::install(
1818
$version = '',
19-
$build_prameters = undef,
19+
$build_parameters = undef,
2020
$php_inis = undef,
2121
$install_dir = '/opt/phpbrew',
2222
) {
@@ -28,8 +28,8 @@
2828
$php_version = $version
2929
}
3030

31-
if $build_prameters {
32-
$extra_params = $build_prameters
31+
if $build_parameters {
32+
$extra_params = $build_parameters
3333
} elsif versioncmp($php_version, '5.3') < 0 {
3434
$extra_params = ''
3535
} else {

0 commit comments

Comments
 (0)