summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-04-16 09:38:24 +0000
committerlain <lain@soykaf.club>2020-04-16 09:38:24 +0000
commit2b57f73b776d0de3c91b3b0dd19e4458c205f690 (patch)
treee06ffcb763dcbd267f003934214d5080e48817e4
parentb1c1d2e5e1e1c43a068a7223f9ba69c689c878a3 (diff)
parentaa0a4a1e78655024e992f9c677efed45593ab7b8 (diff)
Merge branch 'small-fix-rewrite_policy' into 'develop'
small fix in the rewrite_policy example See merge request pleroma/pleroma!2391
-rw-r--r--docs/configuration/mrf.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/configuration/mrf.md b/docs/configuration/mrf.md
index c3957c255..287416b2a 100644
--- a/docs/configuration/mrf.md
+++ b/docs/configuration/mrf.md
@@ -113,7 +113,7 @@ defmodule Pleroma.Web.ActivityPub.MRF.RewritePolicy do
@impl true
def describe do
- {:ok, %{mrf_sample: %{content: "new message content"}}}`
+ {:ok, %{mrf_sample: %{content: "new message content"}}}
end
end
```