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
Browse filesBrowse the repository at this point in the historyBrowse files
Denis Yermakou
committed
v0.3.4: fix double trailing newlines in 13 source files
In v0.3.1, a defensive 'ensure EOF newline' bash script had inverted
logic that added an extra newline to files already ending with one.
This created double trailing newlines that rustfmt --check rejected.
Fixed via byte-level Python normalisation:
data.rstrip(b'\n') + b'\n' # exactly one trailing LF
Affects 13 files: 12 in src/, 1 in benches/. No source-code or API
changes. Pure file-byte fix.
cargo fmt --check now passes.
0 commit comments