Skip to content

Commit 7fea793

Browse files
authored
Merge pull request #263 from JuliaML/auto-juliaformatter-pr
[AUTO] JuliaFormatter.jl run
2 parents 500b5be + a715771 commit 7fea793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transforms/quantile.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function qsmooth(values)
8686
i = 1
8787
j = first(bounds)
8888
qlinear!(sorted, i, j, sorted[j], sorted[j + 1])
89-
for k in 1:length(bounds)-1
89+
for k in 1:(length(bounds) - 1)
9090
i = bounds[k] + 1
9191
j = bounds[k + 1]
9292
qlinear!(sorted, i, j, sorted[i - 1], sorted[j])

0 commit comments

Comments
 (0)