diff options
author | lain <lain@soykaf.club> | 2020-04-16 09:38:24 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-04-16 09:38:24 +0000 |
commit | 2b57f73b776d0de3c91b3b0dd19e4458c205f690 (patch) | |
tree | e06ffcb763dcbd267f003934214d5080e48817e4 /docs | |
parent | b1c1d2e5e1e1c43a068a7223f9ba69c689c878a3 (diff) | |
parent | aa0a4a1e78655024e992f9c677efed45593ab7b8 (diff) | |
download | pleroma-2b57f73b776d0de3c91b3b0dd19e4458c205f690.tar.gz pleroma-2b57f73b776d0de3c91b3b0dd19e4458c205f690.zip |
Merge branch 'small-fix-rewrite_policy' into 'develop'
small fix in the rewrite_policy example
See merge request pleroma/pleroma!2391
Diffstat (limited to 'docs')
-rw-r--r-- | docs/configuration/mrf.md | 2 |
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 ``` |