[前][次][番号順一覧][スレッド一覧]

ruby-changes:44454

From: nobu <ko1@a...>
Date: Sun, 30 Oct 2016 21:08:05 +0900 (JST)
Subject: [ruby-changes:44454] nobu:r56527 (trunk): fix typo [ci skip]

nobu	2016-10-30 21:08:00 +0900 (Sun, 30 Oct 2016)

  New Revision: 56527

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56527

  Log:
    fix typo [ci skip]
    
    * lib/rubygems/specification.rb: reapply 56225.

  Modified files:
    trunk/lib/rubygems/specification.rb
    trunk/test/rubygems/test_gem_specification.rb
Index: lib/rubygems/specification.rb
===================================================================
--- lib/rubygems/specification.rb	(revision 56526)
+++ lib/rubygems/specification.rb	(revision 56527)
@@ -2698,7 +2698,7 @@ class Gem::Specification < Gem::BasicSpe https://github.com/ruby/ruby/blob/trunk/lib/rubygems/specification.rb#L2698
 
     unless specification_version.is_a?(Integer)
       raise Gem::InvalidSpecificationException,
-            'specification_version must be a Integer (did you mean version?)'
+            'specification_version must be an Integer (did you mean version?)'
     end
 
     case platform
Index: test/rubygems/test_gem_specification.rb
===================================================================
--- test/rubygems/test_gem_specification.rb	(revision 56526)
+++ test/rubygems/test_gem_specification.rb	(revision 56527)
@@ -3080,7 +3080,7 @@ Did you mean 'Ruby'? https://github.com/ruby/ruby/blob/trunk/test/rubygems/test_gem_specification.rb#L3080
         end
       end
 
-      err = 'specification_version must be a Integer (did you mean version?)'
+      err = 'specification_version must be an Integer (did you mean version?)'
       assert_equal err, e.message
     end
   end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]