Skip to content

Commit 6a27e13

Browse files
committed
mend
1 parent 3993e66 commit 6a27e13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lua/lazy/core/loader.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,11 @@ function M.load(plugins, reason, opts)
199199
::continue::
200200
end
201201

202-
table.sort(queue,function (a,b)
203-
return a.priority and b.priority and a.priority>b.priority
202+
table.sort(queue, function(a, b)
203+
return a.priority and b.priority and a.priority > b.priority
204204
end)
205205

206-
for _,plugin in ipairs(queue) do
206+
for _, plugin in ipairs(queue) do
207207
M._load(plugin, reason, opts)
208208
end
209209
end

0 commit comments

Comments
 (0)