Skip to content

Commit 003b9d9

Browse files
committed
Update formatting
1 parent 3194dad commit 003b9d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/orgmode/treesitter/list.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function List:update_parent_cookie()
4646
end, checkboxes)
4747
local new_status
4848
if query.get_node_text(parent_cookie, 0):find('%%') then
49-
new_status = ('[%d%%]'):format((#checked_boxes/#checkboxes) * 100)
49+
new_status = ('[%d%%]'):format((#checked_boxes / #checkboxes) * 100)
5050
else
5151
new_status = ('[%d/%d]'):format(#checked_boxes, #checkboxes)
5252
end

0 commit comments

Comments
 (0)