Skip to content

Commit a9dd7f3

Browse files
authored
' ,' -> ', ' (#36349)
1 parent 1f8b442 commit a9dd7f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/sort.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ function searchsortedfirst(a::AbstractRange{<:Real}, x::Real, o::DirectOrdering)
244244
lt(o, first(a), x) ? length(a) + 1 : 1
245245
else
246246
n = round(Integer, clamp((x - first(a)) / step(a) + 1, 1, length(a)))
247-
lt(o, a[n] ,x) ? n + 1 : n
247+
lt(o, a[n], x) ? n + 1 : n
248248
end
249249
end
250250

0 commit comments

Comments
 (0)