Wrong usage of "a/an"

Wrong usage of "a/an" in the messages:
"The value is an hash of xxx_config resources"
"with a unsupported iscsi helper"

Should be:
"The value is a hash of xxx_config resources"
"with an unsupported iscsi helper"

Totally 2 occurrences in puppet-cinder base code.

Change-Id: I1ac0c1ba0ece780ddf92797340a179235c89ebb5
This commit is contained in:
hgangwx 2015-12-30 19:58:36 +08:00
parent bab8cb706a
commit cb6db92c6b
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#
# [*xxx_config*]
# (optional) Allow configuration of arbitrary cinder configurations.
# The value is an hash of xxx_config resources. Example:
# The value is a hash of xxx_config resources. Example:
# { 'DEFAULT/foo' => { value => 'fooValue'},
# 'DEFAULT/bar' => { value => 'barValue'}
# }

View File

@ -37,7 +37,7 @@ describe 'cinder::volume::iscsi' do
end
describe 'with a unsupported iscsi helper' do
describe 'with an unsupported iscsi helper' do
let(:params) { req_params.merge(:iscsi_helper => 'fooboozoo')}
it_raises 'a Puppet::Error', /Unsupported iscsi helper: fooboozoo/