diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-11-11 09:44:44 -0600 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2021-05-11 16:50:10 -0500 |
commit | 297481da662380f938bac66fdd32476dbb920faa (patch) | |
tree | 4cc3fdd0eaccfb1e11363a91093f07ad3b011b29 | |
parent | 6e3379c70ff68af2cee2fd85e17c85209bbd637d (diff) | |
download | pleroma-297481da662380f938bac66fdd32476dbb920faa.tar.gz |
fix butchered description
-rw-r--r-- | lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex b/lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex index 2ae503fa6..864a0a9f2 100644 --- a/lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex +++ b/lib/pleroma/web/activity_pub/mrf/auto_subject_policy.ex @@ -124,9 +124,11 @@ defmodule Pleroma.Web.ActivityPub.MRF.AutoSubjectPolicy do key: :match, type: {:list, :tuple}, description: """ - **Keyword**: a string or list of keywords. E.g., to in the form of ["", " + **Keyword**: a string or list of keywords. E.g., ["cat", "dog"] to match on both "cat" and "dog". **Subject**: a string to insert into the subject field. + + Note: the keyword matching is case-insensitive and matches only the whole word. """ } ] |