fix: typo on clipboard notify (#2032)

This commit is contained in:
Jeremy Goh 2023-03-04 10:51:09 +08:00 committed by GitHub
parent 362ecbeed6
commit 6117582578
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,7 @@ local function add_to_clipboard(node, clip)
for idx, _node in ipairs(clip) do
if _node.absolute_path == node.absolute_path then
table.remove(clip, idx)
return notify.info(node.absolute_path .. " removed to clipboard.")
return notify.info(node.absolute_path .. " removed from clipboard.")
end
end
table.insert(clip, node)