diff options
author | Francis Dinh <normandy@firemail.cc> | 2018-04-25 00:46:06 -0400 |
---|---|---|
committer | Francis Dinh <normandy@firemail.cc> | 2018-04-25 00:46:06 -0400 |
commit | 0df1a4efc841af4a12f45c1551f372d867ff7e1d (patch) | |
tree | 17b666197d307e1f33a1096b110f5fba05a11ad2 | |
parent | f0798440de96139f5717e90582e41ddb6ce5a0ce (diff) | |
download | pleroma-0df1a4efc841af4a12f45c1551f372d867ff7e1d.tar.gz pleroma-0df1a4efc841af4a12f45c1551f372d867ff7e1d.zip |
Fix comment grammar
-rw-r--r-- | lib/pleroma/web/twitter_api/twitter_api.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/twitter_api/twitter_api.ex b/lib/pleroma/web/twitter_api/twitter_api.ex index b6ae7c7f7..5477211dc 100644 --- a/lib/pleroma/web/twitter_api/twitter_api.ex +++ b/lib/pleroma/web/twitter_api/twitter_api.ex @@ -14,7 +14,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do def delete(%User{} = user, id) do # TwitterAPI does not have an "unretweet" endpoint; instead this is done - # via the "destroy" endpoint. Therefore, there is a need to handle + # via the "destroy" endpoint. Therefore, we need to handle # when the status to "delete" is actually an Announce (repeat) object. with %Activity{data: %{"type" => type}} <- Repo.get(Activity, id) do case type do |