Skip to content

Commit 37678fc

Browse files
restore spirit of '^' comment
1 parent 8673ca9 commit 37678fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fwrite.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ void writeFloat64(const void *col, int64_t row, char **pch)
261261
// 30460 => l=3046, sf=4, exp=4 dr=0; dl0=1; width=5
262262
// 0.0072 => l=72, sf=2, exp=-3 dr=4; dl0=1; width=6
263263
if (width <= sf + (sf > 1) + 2 + (abs(exp) > 99 ? 3 : 2) + scipen) {
264-
// ^^^^ to not include 1 char for dec in -7e-04 where sf==1
264+
// ^^^^^^ to not include 1 char for dec in -7e-04 where sf==1
265265
// ^ 2 for 'e+'/'e-'
266266
// decimal format ...
267267
ch += width - 1;

0 commit comments

Comments
 (0)