From ba672b6de106d63625ce5c42f932c08cc1fcdebf Mon Sep 17 00:00:00 2001 From: a_matsuda Date: Thu, 12 Dec 2013 06:17:31 +0000 Subject: [PATCH] * lib/resolv.rb: Fix typo in an error message s/postive/positive/ git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/resolv.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/resolv.rb b/lib/resolv.rb index d8ee487cfc..6d34a67e09 100644 --- a/lib/resolv.rb +++ b/lib/resolv.rb @@ -908,7 +908,7 @@ class Resolv values = Array(values) values.each do |t| Numeric === t or raise ArgumentError, "#{t.inspect} is not numeric" - t > 0.0 or raise ArgumentError, "timeout=#{t} must be postive" + t > 0.0 or raise ArgumentError, "timeout=#{t} must be positive" end @timeouts = values else