Skip to content

Commit 7b84752

Browse files
committed
chore: fix casing of variables
1 parent 98a79df commit 7b84752

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lua/astrocommunity/pack/quarto/init.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ return {
55
opts = function(_, opts)
66
opts.codeRunner = opts.codeRunner or {}
77

8-
local ironOk, _ = pcall(require, "iron.core")
9-
if ironOk then
8+
local iron_avail, _ = pcall(require, "iron.core")
9+
if iron_avail then
1010
opts.codeRunner.default_method = "iron"
1111
return
1212
end
1313

14-
local moltenOk, _ = pcall(require, "molten.health")
15-
if moltenOk then
14+
local molten_avail, _ = pcall(require, "molten.health")
15+
if molten_avail then
1616
opts.codeRunner.default_method = "molten"
1717
return
1818
end

0 commit comments

Comments
 (0)