aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/RichObjectStrings
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-11-07 10:36:32 +0100
committerJoas Schilling <coding@schilljs.com>2024-11-07 10:36:32 +0100
commitac693ee4d69c12f9135ca4ddea418d02823bed56 (patch)
treefe5612ac7fc2d622ad4c12a221a9ca4a967a4ce1 /lib/public/RichObjectStrings
parent5faa6e48e536271f46f19ae3854899660984de98 (diff)
downloadnextcloud-server-ac693ee4d69c12f9135ca4ddea418d02823bed56.tar.gz
nextcloud-server-ac693ee4d69c12f9135ca4ddea418d02823bed56.zip
fix(richobjectstrings): Fix typo in docsbugfix/noid/validate-parameter-keys
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/RichObjectStrings')
-rw-r--r--lib/public/RichObjectStrings/IValidator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/RichObjectStrings/IValidator.php b/lib/public/RichObjectStrings/IValidator.php
index a6c82d34259..122e5ca992d 100644
--- a/lib/public/RichObjectStrings/IValidator.php
+++ b/lib/public/RichObjectStrings/IValidator.php
@@ -15,7 +15,7 @@ namespace OCP\RichObjectStrings;
*/
interface IValidator {
/**
- * Only alphanumeric, dash, underscore and got are allowed, starting with a character
+ * Only alphanumeric, dash, underscore and dot are allowed, starting with a character
* @since 31.0.0
*/
public const PLACEHOLDER_REGEX = '[A-Za-z][A-Za-z0-9\-_.]+';