diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-06-13 04:53:39 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-06-13 04:53:39 +0000 |
commit | 21699cf603a147f18cc99c4c6489c68379302d04 (patch) | |
tree | 33ef218985010dc6894c9b9d24ec5f87b455fb45 /lib/singleton.rb | |
parent | bd6e77ae1f0253eb6f4bbd1807e8336f97ab9670 (diff) | |
download | ruby-21699cf603a147f18cc99c4c6489c68379302d04.tar.gz ruby-21699cf603a147f18cc99c4c6489c68379302d04.tar.xz ruby-21699cf603a147f18cc99c4c6489c68379302d04.zip |
ext/exmk.rb.in, lib/singleton.rb: remove nested ""s.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2566 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/singleton.rb')
-rw-r--r-- | lib/singleton.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/singleton.rb b/lib/singleton.rb index 583945857..d34853702 100644 --- a/lib/singleton.rb +++ b/lib/singleton.rb @@ -239,8 +239,8 @@ class Ups < SomeSingletonClass puts "Before there were #{num_of_instances(self)}" sleep 5 puts "Now there is #{num_of_instances(self)}" - puts "#{@enter.join "; "} was the order of threads entering the waiting loop" - puts "#{@leave.join "; "} was the order of threads leaving the waiting loop" + puts "#{@enter.join '; '} was the order of threads entering the waiting loop" + puts "#{@leave.join '; '} was the order of threads leaving the waiting loop" end end end |