Skip to content

Commit

Permalink
Merge pull request #263 from JuliaML/auto-juliaformatter-pr
Browse files Browse the repository at this point in the history
[AUTO] JuliaFormatter.jl run
  • Loading branch information
juliohm authored Dec 22, 2023
2 parents 500b5be + a715771 commit 7fea793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transforms/quantile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function qsmooth(values)
i = 1
j = first(bounds)
qlinear!(sorted, i, j, sorted[j], sorted[j + 1])
for k in 1:length(bounds)-1
for k in 1:(length(bounds) - 1)
i = bounds[k] + 1
j = bounds[k + 1]
qlinear!(sorted, i, j, sorted[i - 1], sorted[j])
Expand Down

0 comments on commit 7fea793

Please sign in to comment.