Skip to content

Commit

Permalink
fix missing new line before first param
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Dec 16, 2017
1 parent c604d2d commit cb9bd6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/sipify.pl
Expand Up @@ -131,12 +131,12 @@ sub processDoxygenLine {
$line =~ s/\s*\\return(s)?/\n:return:/;

if ( $line =~ m/\\param / ){
$line =~ s/\s*\\param (\w+)\b/:param $1:/g;
if ( $COMMENT_PARAM_LIST == 0 )
{
$line = "\n$line";
}
$COMMENT_PARAM_LIST = 1;
$line =~ s/\s*\\param (\w+)\b/:param $1:/g;
}


Expand Down

0 comments on commit cb9bd6d

Please sign in to comment.