src/Form/JsonApiSettingsForm.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Form/JsonApiSettingsForm.php b/src/Form/JsonApiSettingsForm.php
index 37e9d7b..ded0f12 100644
--- a/src/Form/JsonApiSettingsForm.php
+++ b/src/Form/JsonApiSettingsForm.php
@@ -41,7 +41,7 @@ class JsonApiSettingsForm extends ConfigFormBase {
'rw' => $this->t('Allow reading and writing'),
],
'#default_value' => $jsonapi_config->get('read_only') === TRUE ? 'r' : 'rw',
- '#description' => $this->t('When writing is allowed, entities can be added, changed, or removed via JSON:API. This may have security implications.', [':docs' => 'https://www.drupal.org/docs/8/modules/jsonapi/security-considerations']),
+ '#description' => $this->t('When writing is allowed, entities (content items, taxonomy terms, …) can be added, changed, or removed via JSON:API. This may have security implications.', [':docs' => 'https://www.drupal.org/docs/8/modules/jsonapi/security-considerations']),
];
return parent::buildForm($form, $form_state);