Skip to content

Commit cb9bd6d

Browse files
committedDec 16, 2017
fix missing new line before first param
1 parent c604d2d commit cb9bd6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scripts/sipify.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@ sub processDoxygenLine {
131131
$line =~ s/\s*\\return(s)?/\n:return:/;
132132

133133
if ( $line =~ m/\\param / ){
134+
$line =~ s/\s*\\param (\w+)\b/:param $1:/g;
134135
if ( $COMMENT_PARAM_LIST == 0 )
135136
{
136137
$line = "\n$line";
137138
}
138139
$COMMENT_PARAM_LIST = 1;
139-
$line =~ s/\s*\\param (\w+)\b/:param $1:/g;
140140
}
141141

142142

0 commit comments

Comments
 (0)
Please sign in to comment.