From cb6ded603bef9084582e1961dbc8ebca61774b2c Mon Sep 17 00:00:00 2001 From: Will Dean Date: Wed, 11 Dec 2024 18:12:02 +0100 Subject: [PATCH] remove single quote --- lua/octo/ui/writers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/octo/ui/writers.lua b/lua/octo/ui/writers.lua index 1dc84f0c..359be37d 100644 --- a/lua/octo/ui/writers.lua +++ b/lua/octo/ui/writers.lua @@ -1317,7 +1317,7 @@ function M.write_commit_event(bufnr, item) end table.insert(vt, { " added ", "OctoTimelineItemHeading" }) table.insert(vt, { item.commit.abbreviatedOid, "OctoDetailsLabel" }) - table.insert(vt, { " '", "OctoTimelineItemHeading" }) + table.insert(vt, { " ", "OctoTimelineItemHeading" }) table.insert(vt, { item.commit.messageHeadline, "OctoDetailsLabel" }) table.insert(vt, { " " .. utils.format_date(item.createdAt), "OctoDate" }) write_event(bufnr, vt)