macro processor: fix typos

issue#70
Houtan Bastani 2019-08-02 14:34:26 -04:00
parent b286bedbb6
commit 4a3423f74f
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 2 additions and 2 deletions

View File

@ -1305,10 +1305,10 @@ UnaryOp::print(ostream &output, bool matlab_output) const noexcept
output << "round(";
break;
case codes::UnaryOp::normpdf:
output << "normpdf";
output << "normpdf(";
break;
case codes::UnaryOp::normcdf:
output << "round(";
output << "normcdf(";
break;
}