stan-dev / stanc3

The Stan transpiler (from Stan to C++ and beyond).
BSD 3-Clause "New" or "Revised" License
142 stars 46 forks source link

Auto-formatter with lpdf functions with a single argument #1119

Closed rok-cesnovar closed 2 years ago

rok-cesnovar commented 2 years ago
target += std_normal_lpdf(beta);

is auto formatted to

target += std_normal_lpdf(beta | );

but should probably be left as-is I think.