]> review.fuel-infra Code Review - puppet-modules/puppetlabs-firewall.git/commitdiff
fix typo
authorJonathan Boyett <jonathan@failingservers.com>
Wed, 11 May 2011 21:28:39 +0000 (14:28 -0700)
committerJonathan Boyett <jonathan@failingservers.com>
Wed, 11 May 2011 21:28:39 +0000 (14:28 -0700)
lib/puppet/type/firewall.rb

index 21d5e9e4a213330eedcecfdd8cbeb6eafd8a37af..321d9933b1eea4672b013ebfd68b9d24179a8c17 100644 (file)
@@ -46,7 +46,7 @@ Puppet::Type.newtype(:firewall) do
     validate do |value|
       if value !~ /^[a-zA-Z0-9 \-_]+$/ then
         self.fail "Not a valid rule name. Make sure it contains ASCII " \
-          "alphanumeric, spaces, hyphens or underscoares."
+          "alphanumeric, spaces, hyphens or underscores."
       end
     end
   end