Skip to content

Commit 298d214

Browse files
committed
Fix: Extra comma in printf
1 parent 92b9a56 commit 298d214

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/bench.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ inline dataset_t make_dataset_from_path(std::string path) {
209209
mean_line_bytes /= data.lines.size();
210210

211211
std::setlocale(LC_NUMERIC, "");
212-
std::printf( //
213-
"Parsed the dataset with:\n" //
214-
"- %zu words of mean length ~ %.2f bytes\n" //
215-
"- %zu lines of mean length ~ %.2f bytes\n", //
216-
"- %zu bytes in total\n", //
212+
std::printf( //
213+
"Parsed the dataset with:\n" //
214+
"- %zu words of mean length ~ %.2f bytes\n" //
215+
"- %zu lines of mean length ~ %.2f bytes\n" //
216+
"- %zu bytes in total\n", //
217217
data.tokens.size(), mean_token_bytes, data.lines.size(), mean_line_bytes, data.text.size());
218218

219219
return data;

0 commit comments

Comments
 (0)