From 1b9cdeac8ae784b94b3ee9c9447894faea5988a7 Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 12 Jul 2004 17:21:21 +0000 Subject: Allow optional : before call-seq: git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/parsers/parse_rb.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/rdoc/parsers/parse_rb.rb b/lib/rdoc/parsers/parse_rb.rb index 4146738b5..8a1ecc612 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 -- cgit