summaryrefslogtreecommitdiff
path: root/lib/rdoc
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-29 11:07:10 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-29 11:07:10 +0000
commit932c3997e930a981fe76bc3e6ea48a66966789a7 (patch)
treee329871f1ed24fae8823c27efd47bb80402c238b /lib/rdoc
parentce350d61b47eb3ff0effe0977322279cc0ed666b (diff)
* lib/rdoc/usage.rb: supress warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc')
-rw-r--r--lib/rdoc/usage.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rdoc/usage.rb b/lib/rdoc/usage.rb
index 3a3718e2d3..08393c380b 100644
--- a/lib/rdoc/usage.rb
+++ b/lib/rdoc/usage.rb
@@ -139,7 +139,7 @@ module RDoc
end
def RDoc.find_comment(file)
- catch (:exit) do
+ catch(:exit) do
# skip leading blank lines
0 while (line = gets(file)) && (line =~ /^\s*$/)