Merge pull request #558 from namolnad/patch-1

Fix deprecation warning typo
This commit is contained in:
ThePrimeagen 2024-04-09 12:41:15 -06:00 committed by GitHub
commit 0378a6c428
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -102,7 +102,7 @@ end
---@param item? HarpoonListItem
---@return HarpoonList
function HarpoonList:append(item)
print("APPEND IS DEPRICATED -- PLEASE USE `add`")
print("APPEND IS DEPRECATED -- PLEASE USE `add`")
return self:add(item)
end