README.rdoc in acts_as_followable-0.1.3 vs README.rdoc in acts_as_followable-0.1.4

- old
+ new

@@ -39,12 +39,13 @@ To stop following an object use the following: user.stop_following(book) -You can remove all the followers like this: +You can remove all the followers/followings like this: - user.remove_followers_by_type('Book') + user.destroy_followers_by_type('User') + user.destroy_followings_by_type('Book') You can check to see if an object is following another object through the following: user.following?(book)