diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7731366..5ee283d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,3 @@
## Changelog
-
-3.0.0 Initial Version
\ No newline at end of file
+- 4.0.1 Matomo 4 Compatible. Fixed generator documentation link in Plugin Settings
+- 3.0.0 Initial Version
diff --git a/SystemSettings.php b/SystemSettings.php
index 674743a..e9fb64c 100644
--- a/SystemSettings.php
+++ b/SystemSettings.php
@@ -37,7 +37,7 @@ private function createSharedSecretSetting()
$field->title = 'Shared Secret';
$field->uiControl = FieldConfig::UI_CONTROL_TEXT;
$field->description = 'Set the shared secret. This value should not be exposed to users.';
- $field->inlineHelp = '
NOTICE: The access provider must use this same value for its secret.
How do I create an access provider?';
+ $field->inlineHelp = '
NOTICE: The access provider must use this same value for its secret.
How do I create an access provider?';
$field->validators[] = new NotEmpty();
$field->validators[] = new CharacterLength(10,500);
});