From 5a67bd438acdd28bda47357082ab66f440f2a04e Mon Sep 17 00:00:00 2001 From: titonova <41286822+titonova@users.noreply.github.com> Date: Wed, 19 Jul 2023 19:32:27 +0100 Subject: [PATCH] changed deleteTags to deleteTag where appropriate (#469) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1d6e966..db0f0ca 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,8 @@ $newsItem->attachTags(['fourth tag', 'fifth tag']); $newsItem->attachTags(['fourth_tag','fifth_tag'],'some_type'); // detaching tags -$newsItem->detachTags('third tag'); -$newsItem->detachTags('third tag','some_type'); +$newsItem->detachTag('third tag'); +$newsItem->detachTag('third tag','some_type'); $newsItem->detachTags(['fourth tag', 'fifth tag']); $newsItem->detachTags(['fourth tag', 'fifth tag'],'some_type');