diff options
author | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-08 15:22:22 +0000 |
---|---|---|
committer | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-08 15:22:22 +0000 |
commit | 4815165919d59018b1a3d9598bc8bd7d70f19304 (patch) | |
tree | dac0a897e9f2044518d94b35346227e0e0bc81a9 | |
parent | 3b8341b4491d6e86b457679132d8c0ccc6f6efab (diff) |
* lib/test/unit.rb (module): doc fix [ruby-core:26618]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/test/unit.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/test/unit.rb b/lib/test/unit.rb index fdf786be18..b224dc62f8 100644 --- a/lib/test/unit.rb +++ b/lib/test/unit.rb @@ -261,13 +261,13 @@ module Test # :nodoc: # module Unit - # Set true when Test::Unit has run. If set to true Test::Unit - # will not automatically run at exit. + # Set +true+ to indicate that Test::Unit has been run. + # If set to +true+, Test::Unit will not automatically run at exit. def self.run=(flag) @run = flag end - # Already tests have run? + # Tests have already been run? def self.run? @run ||= false end |