|
@@ -83,7 +83,7 @@ use strict;
|
|
# * my_function
|
|
# * my_function
|
|
# **/
|
|
# **/
|
|
#
|
|
#
|
|
-# If the Description: header tag is ommitted, then there must be a blank line
|
|
|
|
|
|
+# If the Description: header tag is omitted, then there must be a blank line
|
|
# after the last parameter specification.
|
|
# after the last parameter specification.
|
|
# e.g.
|
|
# e.g.
|
|
# /**
|
|
# /**
|
|
@@ -265,7 +265,7 @@ my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
|
|
my $doc_end = '\*/';
|
|
my $doc_end = '\*/';
|
|
my $doc_com = '\s*\*\s*';
|
|
my $doc_com = '\s*\*\s*';
|
|
my $doc_decl = $doc_com.'(\w+)';
|
|
my $doc_decl = $doc_com.'(\w+)';
|
|
-my $doc_sect = $doc_com.'(['.$doc_special.']?[\w ]+):(.*)';
|
|
|
|
|
|
+my $doc_sect = $doc_com.'(['.$doc_special.']?[\w\s]+):(.*)';
|
|
my $doc_content = $doc_com.'(.*)';
|
|
my $doc_content = $doc_com.'(.*)';
|
|
my $doc_block = $doc_com.'DOC:\s*(.*)?';
|
|
my $doc_block = $doc_com.'DOC:\s*(.*)?';
|
|
|
|
|