From 89c0cab6165056a7255c93caefb0a49e732941f3 Mon Sep 17 00:00:00 2001 From: Rabbit Whiskers Date: Mon, 1 Oct 2012 15:07:40 -0700 Subject: [PATCH 1/2] Explain what happens when you DELETE /followers --- content/docs/app-server.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/docs/app-server.md b/content/docs/app-server.md index cb5aee1..15881c2 100644 --- a/content/docs/app-server.md +++ b/content/docs/app-server.md @@ -64,7 +64,8 @@ Apps can request information on a specific follower. ### DELETE /followers/:id -Apps can end the user's relationship with a follower. +Apps can end the user's relationship with a follower, which means that the server will no longer notify +them of your new posts. They will still be able to get your public posts using the API. {delete_follower example} From d52dd795460337c89e039f296d43805be88a499d Mon Sep 17 00:00:00 2001 From: Rabbit Whiskers Date: Mon, 1 Oct 2012 15:12:06 -0700 Subject: [PATCH 2/2] Clarify wording about DELETE /followers --- content/docs/app-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/app-server.md b/content/docs/app-server.md index 15881c2..2c019a6 100644 --- a/content/docs/app-server.md +++ b/content/docs/app-server.md @@ -65,7 +65,7 @@ Apps can request information on a specific follower. ### DELETE /followers/:id Apps can end the user's relationship with a follower, which means that the server will no longer notify -them of your new posts. They will still be able to get your public posts using the API. +the follower of the user's new posts. The follower will still be able to get the user's public posts using the API. {delete_follower example}