summaryrefslogtreecommitdiff
path: root/lib/rdoc/parsers
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-12 17:21:21 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-12 17:21:21 +0000
commit1811324f30e564181bd543e0df3d1085edc86d42 (patch)
tree86fb8cf6ed81f05cd02e0ab4033bc2593567e629 /lib/rdoc/parsers
parente191fde02eb684c27b5b1678738ee0f835e4e095 (diff)
Allow optional : before call-seq:
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/parsers')
-rw-r--r--lib/rdoc/parsers/parse_rb.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rdoc/parsers/parse_rb.rb b/lib/rdoc/parsers/parse_rb.rb
index 4146738b59..8a1ecc612c 100644
--- a/lib/rdoc/parsers/parse_rb.rb
+++ b/lib/rdoc/parsers/parse_rb.rb
@@ -1979,7 +1979,7 @@ module RDoc
# Look for a 'call-seq' in the comment, and override the
# normal parameter stuff
- if comment.sub!(/call-seq:(.*?)^\s*\#?\s*$/m, '')
+ if comment.sub!(/:?call-seq:(.*?)^\s*\#?\s*$/m, '')
seq = $1
seq.gsub!(/^\s*\#\s*/, '')
meth.call_seq = seq