Skip to content

Commit e19f7ee

Browse files
SjBkristijanhusak
authored andcommitted
fix(babel): replace double quotes with single quotes.
Coding style requires single quotes
1 parent 36d5f50 commit e19f7ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/orgmode/babel/tangle.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function Tangle:tangle()
7777

7878
if info.header_args[':mkdirp'] == 'yes' then
7979
local path = vim.fn.fnamemodify(info.filename, ':h')
80-
vim.fn.mkdir(path, "p")
80+
vim.fn.mkdir(path, 'p')
8181
end
8282

8383
if info.name then

0 commit comments

Comments
 (0)