Skip to content

Commit

Permalink
changed deleteTags to deleteTag where appropriate (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
titonova authored Jul 19, 2023
1 parent 097ad35 commit 5a67bd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down

0 comments on commit 5a67bd4

Please sign in to comment.