You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rendering an array, it renders always a trailing comma, which I'm assuming is not the intended functionality, but instead it should be rendering a comma just for all the elements prior to the last
Problem
When rendering an array, it renders always a trailing comma, which I'm assuming is not the intended functionality, but instead it should be rendering a comma just for all the elements prior to the last
handlebars-rust/src/json/value.rs
Lines 110 to 130 in 23ca8d7
Example
We want to render the following array: [1, 2, 3]
Expected Result
It gets rendered as
[1, 2, 3]
Actual Result
It gets rendered as
[1, 2, 3, ]
The text was updated successfully, but these errors were encountered: