Skip to content

Commit

Permalink
fix: Add missing space for (plural) line count
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewvincent committed Jun 18, 2024
1 parent acde6a5 commit fc2c2ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/mkdnflow/foldtext.lua
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ M.fold_text = function()
if config.foldtext.line_count == true then
table.insert(
content_info.right,
tostring(line_count) .. (line_count == 1 and ' line' or 'lines')
tostring(line_count) .. (line_count == 1 and ' line' or ' lines')
)
end
-- Add line percentage
Expand Down

0 comments on commit fc2c2ce

Please sign in to comment.