Fix typos in parameter description and test

Change-Id: Ifbf562a2e7876b92d2b54ec5ee99b43e526c6d7a
This commit is contained in:
Rajesh Tailor 2022-06-27 17:18:33 +05:30
parent c3babed1a2
commit f68f987557
4 changed files with 4 additions and 4 deletions

View File

@ -138,7 +138,7 @@ Puppet::Type.newtype(:vs_port) do
desc "Allowed VLAN ids on this port.
This parameter is only meaningful for no access ports. Ports in native-tagged or
native-untagged mode allways allow their native VLAN id.
native-untagged mode always allow their native VLAN id.
VLAN ids may be specified as a list of integers. Defaults to []."

View File

@ -59,7 +59,7 @@
# Defaults to false.
#
# [*vs_config*]
# (optional) allow configuration of arbitary vsiwtch configurations.
# (optional) allow configuration of arbitrary vswitch configurations.
# The value is an hash of vs_config resources. Example:
# { 'other_config:foo' => { value => 'baa' } }
# NOTE: that the configuration MUST NOT be already handled by this module

View File

@ -24,7 +24,7 @@
# Default to undef
#
# [*vs_config*]
# (optional) allow configuration of arbitary vsiwtch configurations.
# (optional) allow configuration of arbitrary vswitch configurations.
# The value is an hash of vs_config resources. Example:
# { 'other_config:foo' => { value => 'baa' } }
# NOTE: that the configuration MUST NOT be already handled by this module

View File

@ -126,7 +126,7 @@ describe 'vswitch::dpdk' do
})
end
it 'configres dpdk options with comma-separated lists' do
it 'configures dpdk options with comma-separated lists' do
is_expected.to contain_vs_config('other_config:dpdk-socket-mem').with(
:value => '1024,1024', :wait => false,
)