Fix some typos in parameter descriptions

Change-Id: I2965b9dee20b62582fa0ce5c22111ee8b0b99761
This commit is contained in:
Rajesh Tailor 2022-06-17 15:57:04 +05:30
parent 51ccb9816c
commit aa9b0aac05
7 changed files with 8 additions and 8 deletions

View File

@ -132,7 +132,7 @@
# Defaults to false
#
# [*cert_file*]
# (optinal) Certificate file to use when starting API server securely
# (optional) Certificate file to use when starting API server securely
# Defaults to $::os_service_default
#
# [*key_file*]
@ -238,7 +238,7 @@
# Defaults to undef.
#
# [*memcached_servers*]
# (optinal) a list of memcached server(s) to use for caching. If left
# (optional) a list of memcached server(s) to use for caching. If left
# undefined, tokens will instead be cached in-process.
# Defaults to undef.
#

View File

@ -60,7 +60,7 @@
# Defaults to 'RegionOne'.
#
# [*public_url*]
# (0ptional) The endpoint's public url.
# (Optional) The endpoint's public url.
# This url should *not* contain any trailing '/'.
# Defaults to 'http://127.0.0.1:8082
#

View File

@ -60,7 +60,7 @@
# Defaults to 'RegionOne'.
#
# [*public_url*]
# (0ptional) The endpoint's public url.
# (Optional) The endpoint's public url.
# This url should *not* contain any trailing '/'.
# Defaults to 'http://127.0.0.1:8083
#

View File

@ -69,7 +69,7 @@
# See https://docs.python.org/2/howto/logging.html
#
# [*default_log_levels*]
# (0ptional) Hash of logger (keys) and level (values) pairs.
# (Optional) Hash of logger (keys) and level (values) pairs.
# Defaults to $::os_service_default.
# Example:
# {'amqp' => 'WARN', 'amqplib' => 'WARN', 'boto' => 'WARN',

View File

@ -65,7 +65,7 @@
# See https://docs.python.org/2/howto/logging.html
#
# [*default_log_levels*]
# (0ptional) Hash of logger (keys) and level (values) pairs.
# (Optional) Hash of logger (keys) and level (values) pairs.
# Defaults to $::os_service_default.
# Example:
# {'amqp' => 'WARN', 'amqplib' => 'WARN', 'boto' => 'WARN',

View File

@ -18,7 +18,7 @@ describe 'murano::db::mysql_cfapi' do
shared_examples_for 'murano_cfapi mysql database' do
context 'when omiting the required parameter password' do
context 'when omitting the required parameter password' do
before { params.delete(:password) }
it { expect { is_expected.to raise_error(Puppet::Error) } }
end

View File

@ -19,7 +19,7 @@ describe 'murano::db::mysql' do
shared_examples_for 'murano mysql database' do
it { is_expected.to contain_class('murano::deps') }
context 'when omiting the required parameter password' do
context 'when omitting the required parameter password' do
before { params.delete(:password) }
it { expect { is_expected.to raise_error(Puppet::Error) } }
end